PATCH
/scim/v2/Groups/{groupId}

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Access Key > as bearer

In: header

Request Body

application/jsonRequired
userIdstring
groupIdstring
operationsarray<object>

Path Parameters

groupIdRequiredstring
curl -X PATCH "https://api.descope.com/scim/v2/Groups/string" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "userId": "string",
    "groupId": "string",
    "operations": [
      {
        "op": "string",
        "path": "string",
        "valueString": "string",
        "valueBoolean": true,
        "valueArray": [
          {
            "value": "string",
            "display": "string"
          }
        ],
        "valueID": "string",
        "valueDisplayName": "string"
      }
    ]
  }'

OK

Was this helpful?