User endpoints
Updates a user
PATCH
Authorizations
Path Parameters
Unique identifier of the user to update
Body
application/json
The user's first name
Required string length:
1 - 255
Example:
"Alice"
The user's last name
Required string length:
1 - 255
Example:
"Smith"
A list of role ids
Example:
["Admin", "Standard", "ReadOnly"]
Response
200
application/json
User updated successfully
The unique identifier for the user
The user's first name
Example:
"John"
The user's last name
Example:
"Doe"
The user's email address
Example:
"john@company.com"
A list of role ids
Example:
["ReadOnly", "Standard"]
A map of login methods to their last login timestamps (Unix epoch).
Example:
{
"Okta": 1731370728,
"Password": 1731338939
}
A map of key value pairs associated with this log
Example:
{
"region": "eu",
"environment": "production"
}