enterprise-admin
Update an attribute for a SCIM enterprise user
Update a provisioned user's individual attributes.
To modify a user's attributes, you'll need to provide a Operations JSON formatted request that includes at least one of the following actions: add, remove, or replace. For specific examples and more information on the SCIM operations format, please refer to the SCIM specification.
[!NOTE] Complex SCIM path selectors that include filters are not supported. For example, a path selector defined as "path": "emails[type eq \"work\"]" will be ineffective.
[!WARNING] Setting active: false will suspend a user. As a result, their handle and primary email address will be obfuscated.
{ "schemas": [ "urn:ietf:params:scim:api:messages:2.0:PatchOp" ], "Operations": [ { "op": "replace", "value": { "active": false } } ] }
patch/scim/v2/enterprises/{enterprise}/Users/{scim_user_id}
Path parameters
scim_user_idstring required
The unique identifier of the SCIM user.
enterprisestring required
The slug version of the enterprise name.
Request body
Response
Success, user was updated