---
title: "Partially update a group"
method: PATCH
path: "/scim/v2/Groups/{id}"
tags: ["SCIM"]
---

# Partially update a group

`PATCH /scim/v2/Groups/{id}`

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.

## Path parameters

- `id` string, required

## Headers

- `Idempotency-Key` string
- `Accept-Encoding` string
- `Content-Encoding` string
- `Zuora-Track-Id` string
- `Zuora-Entity-Ids` string

## Request body

- object
  - `schemas` string[], required
  - `Operations` object[], required
    - `op` 'add' | 'remove' | 'replace'
    - `path` string
    - `value` object[]
      - `value` string

## Response `200`

OK

- object
  - `schemas` string[] — List of schema identifiers that define the structure of the group resource.
  - `id` string — Unique identifier assigned to the group.
  - `displayName` string — Name of the group.
  - `members` object[] — List of members associated with the group.
    - `value` string — Unique identifier of a member within the group.
    - `display` string
  - `urn:zuora:scim:schemas:1.0:GroupExtension` object — Custom attributes specific to the group defined by the extension schema.
    - `schemas` string[] — List of schema identifiers that define the format of the custom attributes.
    - `description` string — Additional description or notes about the group.
    - `organizationId` string — Identifier for the organization to which the group belongs.
    - `active` boolean — Indicates whether the group is currently active.
  - `meta` object — Metadata related to the group resource.
    - `resourceType` string — Type of the resource, which is 'Group' for this object.
    - `location` string — URL where the group resource can be accessed.

## Other responses

- `204` — No Content
- `401` — Unauthorized
- `403` — Forbidden

---

[API](https://skmtc.dev/zuora/apis/api-reference.md) · [All operations](https://skmtc.dev/zuora/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/zuora/api-reference/revisions/d11e237f3e54/schema)
