SCIM

Bulk update groups

Updates an existing group resource, allowing individual (or groups of) users to be added or removed from the group with a single operation.

Setting the operation attribute of a member object to delete will remove members from a group; add is the default operation for PATCH.

patch/scim/v2/Groups/bulk

Request body

schemasstring[] required

List of schema identifiers that define the format of the request.

Response

OK

schemasstring[]

List of schema identifiers that define the structure of the response.

idstring nullable
externalIdstring nullable
totalResultsinteger

Total number of groups returned in the response.

startIndexinteger
itemsPerPageinteger

Example response

{
  "schemas": [
    "urn:ietf:params:scim:api:messages:2.0:ListResponse"
  ],
  "meta": {
    "resourceType": "Group"
  },
  "totalResults": 2,
  "resources": [
    {
      "schemas": [
        "urn:ietf:params:scim:schemas:core:2.0:Group",
        "urn:zuora:scim:schemas:1.0:GroupExtension"
      ],
      "id": "5aa8a1fe-4ed4-44db-a6ae-78645a20ae21",
      "displayName": "test_group_1",
      "urn:zuora:scim:schemas:1.0:GroupExtension": {
        "schemas": [
          "urn:zuora:scim:schemas:1.0:GroupExtension"
        ],
        "organizationId": "ec141dc2-901e-4813-a25d-ef480cff1e26",
        "active": true
      },
      "meta": {
        "resourceType": "Group"
      }
    }
  ]
}

Changes