PATCH
/scim/v2/Groups/{groupId}

Patch SCIM Group, using a valid access key.

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:AccessKey\>

Try it

/scim/v2/Groups/{groupId}

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Access Key > as bearer

In: header

Request Body

userIdstring

groupIdstring

operationsarray<object>

Path Parameters

groupId
Required
string

Status codeDescription
200OK
curl -X PATCH "https://api.descope.com/scim/v2/Groups/string" \
  -d '{
  "userId": "string",
  "groupId": "string",
  "operations": [
    {
      "op": "string",
      "path": "string",
      "valueString": "string",
      "valueBoolean": true,
      "valueArray": [
        {
          "value": "string",
          "display": "string"
        }
      ],
      "valueID": "string",
      "valueDisplayName": "string"
    }
  ]
}'
Was this helpful?