curl command to include first name, last name, email when adding user
I'm fairly new to Adobe Experience Manager.
I can use the following command to add a new user it and assign it multiple groups, but I have to manually add the First Name, Last Name, and Mail information after I have added the user ID.
curl --user admin:admin -F createUser=userid -F authorizableId=userid -F membership=contributor -F membership=everyone http://localhost:####/directory/subdirectory -k
Is there a way for me to add the additional information within the above curl command?
I would appreciate any help.