User
Create a user
Create a user in the caller's (or specified) tenant and send a confirmation email.
post/users/
Query parameters
cookie_namestring nullable
tenant_idinteger
Request body
Example request
{
"first_name": "Jane",
"last_name": "Doe",
"email": "jane.doe@example.com",
"password": "S3cure-P@ssw0rd!",
"tenant_id": 1
}Response
Successful Response
Example response
{
"id": 42,
"created_at": "2026-01-15T09:30:00Z",
"email": "jane.doe@example.com",
"email_confirmed": true,
"pending_email": "jane.new@example.com",
"name": "Jane Doe",
"first_name": "Jane",
"last_name": "Doe",
"active": true,
"tenant_id": 1
}