v1
latestOpenAPI 3.1.02026-07-2618690613.4 KBUser groups
Update user group
Update the specified user group by applying a list of SCIM 2.0 patch operations. Use PATCH to add or remove individual members, or to rename the group, without affecting other attributes.
To replace the entire group resource (including the full membership list) in a single request, use the Replace user group endpoint.
patch/scim/v2/groups/{userGroupId}
Path parameters
userGroupIdstring required
The ID of the group to be updated
Request body
Example request
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"path": "members"
}
]
}Response
Group updated successfully
Example response
{
"meta": {
"resourceType": "Group"
}
}