Patch SCIM group attributes

patch/scim/v2/Groups/{groupId}

Updates one or more attributes of a SCIM group using SCIM PATCH operations.

Request Samples

1

Response Samples

1{
2 "id": "e2c9c521-6b7c-49d2-8fff-7a3df8c03cf4",
3 "displayName": "TestScimGroup1-Updated",
4 "externalId": "8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159",
5 "schemas": [
6 "urn:ietf:params:scim:schemas:core:2.0:Group"
7 ],
8 "meta": {
9 "resourceType": "Group",
10 "created": "2025-10-16T13:58:23.585Z",
11 "lastModified": "2025-10-16T13:58:23.585Z"
12 }
13}

Path Parameters

NameTypeRequiredDescription
groupId
string<object-id>
true

Unique identifier for the group resource (SCIM ID).

Header Parameters

NameTypeRequiredDescription
If-Match
string
false

The entity tag (ETag) value of the resource. If provided, the request succeeds only if the current resource version matches this value.

If-Unmodified-Since
string<date-time>
false

A date-time value. If provided, the request succeeds only if the resource has not been modified since the specified date.

Request Body

SCIM 2.0 PatchOp request for group per RFC 7644 Section 3.5.2.

NameTypeRequiredDescription
schemas
array [string]
true

SCIM schemas URN array.

operations
array [object]
true

Array of patch operations to perform.

undefined
false

Responses

StatusMeaningDescription
200OK

Group updated successfully.

Schema
400Bad Request

The request was invalid.

401Unauthorized

Authentication is required.

403Forbidden

The authenticated user does not have sufficient privileges.

Schema
404Not Found

The SCIM group could not be found.

412Precondition Failed

The If-Match or If-Unmodified-Since header condition was not met.