v1

latestOpenAPI 3.0.1Apache 2.02026-07-1398228598.3 KB
Scim
Group

Patch SCIM Group

Partially updates a group using SCIM patch semantics.

patch/scim/Groups/{id}

Path parameters

idstring required

SCIM ID of the group

Request body

schemasstring[] required

Example request

{
  "schemas": [
    "urn:ietf:params:scim:api:messages:2.0:PatchOp"
  ],
  "Operations": [
    {
      "op": "add",
      "path": "members",
      "value": [
        {
          "value": "5b3680ed-0bed-4c98-af91-e75c3f384b15",
          "display": "john.doe@example.com"
        }
      ]
    }
  ]
}

Response

Group patched successfully

schemasstring[]
displayNamestring
idstring required

Example response

{
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:Group"
  ],
  "id": "group-uuid-123",
  "displayName": "Sales Team",
  "members": [
    {
      "value": "user-uuid-1",
      "display": "jane@example.com"
    }
  ]
}