Update User
PATCH/user/{identifier}
Partially updates fields of a user. Returns 200 on success.
Path Parameters
UUID or email of the user to update.
Request Body
Updated full name of the user.
Updated email address of the user.
New password for the user account.
Updated user status. Accepted values: active, archived.
Error Responses
Validation failure — invalid status value, email format, or other field constraint.
Missing or invalid Authorization token.
User not found or not available on Community Edition.
EXTERNAL_API license not active on the instance.
Request
curl -X PATCH "https://{your-domain}/api/ext/user/{identifier}" -H "Authorization: Basic <access_token>" -H "Content-Type: application/json" -d '{
"name": "Jane Doe",
"email": "[email protected]",
"status": "active"
}'Response: 200