Deprecated: Create User (Human)
POSThttps://$CUSTOM-DOMAIN/management/v1/users/human
Create a new user with the type human. The newly created user will get an initialization email if either the email address is not marked as verified or no password is set. If a password is set the user will not be requested to set a new one on the first login.
Deprecated: use ImportHumanUser
Request​
Header Parameters
The default is always the organization of the requesting user. If you like to get/set a result of another organization include the header. Make sure the user has permission to access the requested data.
- application/json
- application/grpc
- application/grpc-web+proto
Body
required
profile
object
email
object
phone
object
Body
required
profile
object
email
object
phone
object
Body
required
profile
object
email
object
phone
object
Responses​
- 200
- default
A successful response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object
{
"userId": "string",
"details": {
"sequence": "2",
"creationDate": "2025-03-21T10:51:32.185Z",
"changeDate": "2025-03-21T10:51:32.185Z",
"resourceOwner": "69629023906488334"
}
}
- Schema
- Example (from schema)
Schema
details
object
{
"userId": "string",
"details": {
"sequence": "2",
"creationDate": "2025-03-21T10:51:32.186Z",
"changeDate": "2025-03-21T10:51:32.186Z",
"resourceOwner": "69629023906488334"
}
}
- Schema
- Example (from schema)
Schema
details
object
{
"userId": "string",
"details": {
"sequence": "2",
"creationDate": "2025-03-21T10:51:32.186Z",
"changeDate": "2025-03-21T10:51:32.186Z",
"resourceOwner": "69629023906488334"
}
}
An unexpected error response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://$CUSTOM-DOMAIN/management/v1/users/human' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"userName": "string",
"profile": {
"firstName": "string",
"lastName": "string",
"nickName": "string",
"displayName": "string",
"preferredLanguage": "string",
"gender": "GENDER_UNSPECIFIED"
},
"email": {
"email": "string",
"isEmailVerified": true
},
"phone": {
"phone": "string",
"isPhoneVerified": true
},
"initialPassword": "string"
}'