Forum Discussion
Tarun
6 years agoMaven
Hi patils27 ,
You can create a user by using the following v2 API
curl -X POST \
https://[COMMUNITY DOMAIN]/api/2.0/users \
-H 'content-type: application/json' \
-H 'Authorization: Bearer [TOKEN]' \
-H 'client-id: [CLIENT ID]' \
-d '{
"data":{
"type":"user",
"first_name":"samantha",
"last_name":"pantha",
"login":"sampantha",
"email":"sampan@email.com",
"password":"Pa55word!"
}
}'You can find the Documentation for the same over here:
Please Give Kudos if you find this post useful and also mark this as Accepted Solution if this is the required solution.
Regards
Tarun Kumar