Create an enterprise user Run in API Explorer
Ask AI
POST
/api/v1/enterprise/users
curl \
--request POST 'https://api.plannrcrm.com/api/v1/enterprise/users' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"first_name":"John","last_name":"Doe","email":"john@example.com","password":"secret123"}'
Request examples
{
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com",
"password": "secret123"
}
Response examples (201)
{
"uuid": "257e954d-1353-4c04-a635-2b38c0c6e6da",
"email": "john@example.com",
"last_name": "Doe",
"created_at": "2026-03-16T13:04:47+00:00",
"first_name": "John",
"updated_at": "2026-03-16T13:04:47+00:00"
}