PUT
/scim/v2/Groups/{groupId}

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Access Key > as bearer

In: header

Request Body

application/jsonRequired
groupIdstring
displayNamestring
membersarray<object>
externalIdstring
excludedAttributesstring

Path Parameters

groupIdRequiredstring
curl -X PUT "https://api.descope.com/scim/v2/Groups/string" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "groupId": "string",
    "displayName": "string",
    "members": [
      {
        "value": "string",
        "display": "string"
      }
    ],
    "externalId": "string",
    "excludedAttributes": "string"
  }'

OK

{
  "displayName": "string",
  "schemas": [
    "string"
  ],
  "id": "string",
  "members": [
    {
      "value": "string",
      "display": "string"
    }
  ],
  "meta": {
    "created": {},
    "location": "string",
    "lastModified": {},
    "resourceType": "string"
  },
  "externalId": "string",
  "detail": "string"
}

Was this helpful?