Skip to content

Create a group

Request

This creates a group inside the team, if it does not exist already. User memberships can already be specified upon creation. Group creation may fail due to license constraints. User cannot be a member of more than 50 groups.

Security
Authorization
Query
attributesstring

Attributes to include

excludedAttributesstring

Attributes to exclude

Bodyrequired

A JSON object describing the group to be created. The group name must be unique.

object
POST
/scim/v2/Groups
curl -i -X POST \
  'https://developer.celonis.com/_mock/celonis-apis/scim-api/openapi/scim_openapi_spec/scim/v2/Groups?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