User
Update a user
Update a user's profile, role, tenant, or email; password changes are restricted.
patch/users/{user_id}
Path parameters
user_idinteger required
ID of the user to update.
ID of the user to update.
Query parameters
cookie_namestring nullable
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
}