GET
PUT
GET
PUT
PUT
DELETE
GET
PUT
GET
POST
GET
PATCH
DELETE
GET
PUT
PUT
DELETE
GET
PUT
PUT
DELETE
GET
GET
POST
POST
GET
DELETE
GET
GET
POST
GET
PUT
PATCH
DELETE
GET
POST
GET
PUT
PATCH
DELETE
Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
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 enterprise, deletes the external identity, and deletes the associated :scim_user_id
.
{
"Operations":[{
"op":"replace",
"value":{
"active":false
}
}]
}