Skip to content

Update a user by its ID

Request

Updates to a user can also fail, e.g. because of license restrictions. Email updates are forbidden.

Security
Authorization
Path
idstringrequired
Query
attributesstring

Attributes to include

excludedAttributesstring

Attributes to exclude

Bodyapplication/jsonrequired

A JSON object describing the user after the update.

object
PUT
/scim/v2/Users/{id}
curl -i -X PUT \
  'https://developer.celonis.com/_mock/celonis-apis/scim-api/openapi/scim_openapi_spec/scim/v2/Users/{id}?attributes=string&excludedAttributes=string' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "schemas": [
      "urn:ietf:params:scim:schemas:core:2.0:User",
      "urn:celonis:params:scim:schemas:extension:2.0:User"
    ],
    "userName": "user@celonis.com",
    "displayName": "SCIM User #1",
    "externalId": "DEADBEEF",
    "role": "ANALYST"
  }'

Responses

OK