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.

Example request body:

{
  "schemas": [
    "urn:ietf:params:scim:api:messages:2.0:PatchOp"
  ],
  "Operations": [
    {
      "op": "add",
      "path": "members",
      "value": [
        {
          "value": "856fc5ae-db16-4803-bc2b-8f28f43e5a1d"
        }
      ]
    }
  ]
}
Request
Request Body schema: application/json
required
schemas
required
Array of strings

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

required
Array of objects

List of operations to be performed on the resource.

Responses
200

OK

204

No Content

401

Unauthorized

403

Forbidden

patch/scim/v2/Group/bulk
Request samples
application/json
{
  • "schemas": [
    ],
  • "Operations": [
    ]
}
Response samples
application/json
{
  • "schemas": [
    ],
  • "totalResults": 2,
  • "Resources": [
    ]
}