Sign in

Create SCIM group

documented

Create a SCIM group.

POST /scim/v2/organizations/{org_id}/GroupsGroupsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.contentful.com/scim/v2/organizations/{{$org_id}}/Groups" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/scim+json" \
  -H "Accept: application/scim+json" \
  -d '{"schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group"], "displayName": "{{$group_name}}", "externalId": "{{$external_id}}", "members": [{"value": "{{$member1}}"}, {"value": "{{$member2}}"}] }'
Create SCIM group · Contentful · OpenIntegrations