cURL
curl --request PUT \ --url http://api/v1/scim/v2/Groups/{id} \ --header 'Content-Type: application/json' \ --data ' { "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:Group" ], "displayName": "<string>", "members": [ { "value": "<string>", "display": "<string>" } ] } '
{ "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>" } ] }
Update a group’s attributes completely
SCIM ID of the group to update
Group to update
Show child attributes
Ok
Was this page helpful?