Update an attribute for a SCIM user
Allows you to change a provisioned user's individual attributes. To change a user's values, you must provide a specific Operations JSON format that contains at least one of the add, remove, or replace operations. For examples and more information on the SCIM operations format, see the SCIM specification.
[!NOTE] Complicated SCIM path selectors that include filters are not supported. For example, a path selector defined as "path": "emails[type eq \"work\"]" will not work.
[!WARNING] If you set active:false using the replace operation (as shown in the JSON example below), it removes the user from the organization, deletes the external identity, and deletes the associated :scim_user_id.
{ "Operations":[{ "op":"replace", "value":{ "active":false } }] }
Path parameters
The organization name. The name is not case sensitive.
The unique identifier of the SCIM user.
Request body
Example request
{
"Operations": [
{
"op": "replace",
"value": {
"active": false
}
}
]
}Response
Response