Important
Patch currently supports only adding/removing members from the group.
Description: This API allows to add/remove members from the group.
Usage: PATCH /access/api/v1/scim/v2/Groups/<groupName>
Header parameter: Authorization: Bearer
Consumes: application/scim+json; charset=UTF-8
Sample request:
{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
"Operations": [{
"op": "Add",
"path": "members",
"value": [{
"$ref": null,
"value": "newMember"
}]
}]
}Produces: application/scim+json; charset=UTF-8
Sample response:
200 - OK
{
"displayName": "exampleGroup",
"id": "newName",
"members": [
{
"display": "newMember",
"value": "newMember"
},
{
"value": "anonymous",
"display": "anonymous"
}
],
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group"
],
"meta": {
"resourceType": "Group"
}
}