latestOpenAPI 3.0.02026-08-0819201.1 MB
411f9f98c01e
users
Create a User
You need tenants.user.create permission to access this resource
post/users
Request body
Example request
{
"data": {
"attributes": {
"first_name": "John",
"last_name": "Doe",
"email": "test@example.com",
"password": "P@ssw0rd"
}
}
}Response
Created
Example response
{
"data": {
"id": "5b4f337bff4304610483ba67",
"links": {
"self": "/v2/users/5b4f337bff4304610483ba67"
},
"attributes": {
"first_name": "John",
"last_name": "Doe",
"email": "test@example.com",
"company": "My Company",
"registered": "2017-10-02T12:18:06.274Z",
"last_login": "2018-03-15T16:53:57.696Z"
}
}
}