Using curl for creating user vs Manual creation
Hi All,
I'm trying to automate creating users in AEM and using curl command to create users. Below is the command which I'm using for creating user "test1"
curl -u admin:admin -FcreateUser= -FauthorizableId=test1 -Frep:password=test1 -Fprofile/givenName=test1 -Fprofile/familyName=test1 -Fprofile/email=test1@metlife.com -FintermediatePath=/home/users/company http://localhost:4502/libs/granite/security/post/authorizables
I'm able to create user but I'm seeing extra node "profiles" for this "test1" user in crx/de. I have compared this node structure with another user (test2) created manually from useradmin page and "test2" user doesn't have this node.
Could you let me know why there is a difference in node structure using curl command? Is this will cause any issue for users if we use curl to create users?

Thanks.