v1
latestOpenAPI 3.1.02026-07-2618690613.4 KBUser groups
Replace user group
Replace the specified user group. Per the SCIM 2.0 specification, PUT replaces the entire group resource, including its membership.
To add or remove individual members without replacing the full membership list, use the Update user group endpoint, which performs a partial update via PATCH.
put/scim/v2/groups/{userGroupId}
Path parameters
userGroupIdstring required
The ID of the group to be replaced
Request body
Example request
{
"displayName": "Blob SEs",
"members": [
{
"display": "blob.ross@blobsrus.co",
"value": "9e8719d9-276a-4964-9395-a493189a247c"
}
]
}Response
Group replaced successfully
Example response
{
"meta": {
"resourceType": "Group"
}
}