Creates a new group and brings that group object to the service provider.
Security
BearerAuth
A String that is an identifier for the resource as defined by the provisioning client.
POST
curl --request POST \
--url https://YOUR_DOMAIN/scim/v2/Groups \
--header 'Content-type: application/scim+json' \
--header 'Authorization: Bearer eyJ0eX...ll4Q2NT'Successfully created the new group
A unique identifier for a SCIM resource as defined by the service provider.
Example:"e9e30dba-f08f-4109-8486-d5c6a331660a"
A String that is an identifier for the resource as defined by the provisioning client.
A list of members of the Group.
Example:
[ { "value": "92b725cd-9465-4e7d-8c16-01f8e146b87a", "ref": "https://example.com/v2/Users/92b725cd-9465-4e7d-8c16-01f8e146b87a", "type": "User" } ]
The most recent DateTime that the details of this resource were updated at the service provider.
Response
{ "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:Group" ], "id": "e9e30dba-f08f-4109-8486-d5c6a331660a", "displayName": "Tour Guides", "members": [ { … } ], "meta": { "resourceType": "Group", "created": "2011-08-01T18:29:49.793Z", "lastModified": "2011-08-01T20:31:02.315Z", "location": "https://example.com/v2/Groups/e9e30dba-f08f-4109-8486-d5c6a331660a" } }