v1
latestOpenAPI 3.1.02026-07-2618690613.4 KBUsers
Replace user
Replace the specified user. Per the SCIM 2.0 specification, PUT replaces the entire user resource: any optional attribute omitted from the request body is reset to its default value.
To update individual attributes without affecting others, use the Update user endpoint, which performs a partial update via PATCH.
put/scim/v2/users/{userId}
Path parameters
userIdstring required
The ID of the user to be replaced
Request body
Example request
{
"active": true,
"displayName": "Blob Ross",
"userName": "blob.ross@blobsrus.co",
"urn:omni:params:1.0:UserAttribute": {
"good_blob": "yes"
}
}Response
User replaced successfully
Example response
{
"meta": {
"resourceType": "User"
}
}