v1
latestOpenAPI 3.0.32026-07-24148824715.6 KBUsers
Update an existing user
Updates details for a given user.
You need the "Create and update users" permission to use this endpoint.
patch/v2/users/{user_identifier}
Path parameters
user_identifierstring uuid required
The identifier of the user that you want to update.
Request body
Example request
{
"active": true,
"enforce_mfa_after": "2024-06-01T00:00:00.000Z",
"name": "John Doe"
}Response
OK
Example response
{
"active": true,
"client_identifier": "00000000-0000-0000-0000-000000000000",
"email": "example@mail.com",
"identifier": "00000000-0000-0000-0000-000000000000",
"name": "John Doe",
"user_type": "HUMAN"
}