Create user
POST/users
Endpoint to create a new user (registration)
Request
Header Parameters
Content-Type stringrequired
Example: application/x-www-form-urlencoded
Accept stringrequired
Example: application/json
- application/x-www-form-urlencoded
Body
password stringrequired
Password to set for user
Example:
fD423Oflko02OpodfW
client_user_id stringrequired
Client user id (useful for external integrations)
Example:
string_custom
Responses
- 200
- 400
- 401
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
id stringrequired
auth_token stringrequired
{
"status": "string",
"id": "string",
"auth_token": "string"
}
OK
{
"status": "<string>",
"id": "<string>",
"auth_token": "<string>"
}
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
{
"status": "string"
}
Bad Request
{
"status": "<string>"
}
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
{
"status": "string"
}
Unauthorized
{
"status": "<string>"
}
Loading...