---
title: "Update SCIM group"
method: PATCH
path: "/api/scim/v2/Groups/{miniUuid}"
tags: ["SCIM"]
---

# Update SCIM group

`PATCH /api/scim/v2/Groups/{miniUuid}`

## Path parameters

- `miniUuid` string, required — Short identifier of the group

## Request body

- ScimGroupsPatchBody
  - `Operations` union[], required — List of SCIM patch operations
    - union
      - object
        - `op` 'replace' | 'Replace', required — Operation type
        - `value` object, required
          - `displayName` string, required — New display name
          - `id` string — Group ID
      - object
        - `op` 'remove' | 'Remove', required — Operation type
        - `path` string, required — SCIM path for member to remove
      - object
        - `op` 'add' | 'Add', required — Operation type
        - `path` 'members', required — Path for members
        - `value` object[], required
          - `display` string — Display name of the member
          - `value` string, uuid, required — User membership ID
      - object
        - `op` 'replace' | 'Replace', required — Operation type
        - `path` 'members' | 'displayName', required — Path for attribute to replace
        - `value` union, required
          - object[]
            - `display` string — Display name of the member
            - `value` string, uuid, required — User membership ID
          - string
  - `schemas` string[], required — SCIM schema URIs

## Response `200`

SCIM group updated

- ScimGroupResponse
  - `displayName` string, required — Group display name
  - `id` string, required — SCIM group ID (miniUuid)
  - `members` object[] — Group members
    - `display` string, required — Member display name
    - `value` string, uuid, required — Member user ID
  - `schemas` string[], required — SCIM schema URIs

## Other responses

- `400` — Invalid patch operations
- `401` — Authentication required (SCIM bearer token)
- `404` — Group not found

---

[API](https://skmtc.net/omniapp/apis/omni-api.md) · [All operations](https://skmtc.net/omniapp/apis/omni-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/omniapp/omni-api/versions/de7cac8b5983/schema)
