Skip to content

Update a group by its ID

Request

A groups members or its role can be changed via an update to it. Group operations can fail due to license constraints. User cannot be a member of more than 50 groups.

Security
Authorization
Path
idstringrequired

Group ID

Query
attributesstring

Attributes to include

excludedAttributesstring

Attributes to exclude

Bodyrequired

A JSON object describing the group after the update.

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

Responses

OK