v1
latestOpenAPI 3.1.02026-07-2618690613.4 KBUsers
Update user
Update the specified user by applying a list of SCIM 2.0 patch operations. Attributes not referenced in the request are left unchanged.
To replace the entire user resource in a single request, use the Replace user endpoint.
<Warning> Omni does not have a reversible "deactivated" state for users. Setting `active` to `false` revokes the user's membership, which is **not reversible**: their schedules are deleted (unless transferred first) and their Personal Access Tokens are disabled. See [Revoking user memberships](/administration/users/delete) before using this operation. </Warning>patch/scim/v2/users/{userId}
Path parameters
userIdstring required
The ID of the user to be updated
Request body
Example request
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"path": "displayName"
}
]
}Response
User updated successfully
Example response
{
"meta": {
"resourceType": "User"
}
}