Platform Usage APIs
/- SCIM APIs (User Provisioning)
- API Reference
/
Update a group by its ID
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
PUT
- application/scim+json
- application/json
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"
}'