cURL
curl --request PATCH \ --url http://api/v1/scim/v2/Groups/{id} \ --header 'Content-Type: application/json' \ --data ' { "schemas": [ "urn:ietf:params:scim:api:messages:2.0:PatchOp" ], "Operations": [ { "op": "remove", "path": "<string>", "value": "<any>" } ] } '
{ "schemas": [ "<string>" ], "id": "<string>", "meta": { "version": "<string>", "location": "<string>", "lastModified": "2023-11-07T05:31:56Z", "created": "2023-11-07T05:31:56Z", "resourceType": "Group" }, "displayName": "<string>", "members": [ { "value": "<string>", "display": "<string>" } ] }
Partially updates a group’s attributes (e.g., add or remove members).
SCIM ID of the group to update
Update operations to apply to the group
Show child attributes
Ok
Was this page helpful?