- Returns the details of the given Group, including its members
Returns a list of Groups
Creates a Group
Updates a Group
Deletes a Group
Updates a Group
Returns details on asynchronous jobs to modify a Group's members
Returns the details of th...
Returns the group specified by the group_id. Groups are defined by the SCIM specification.
Security
oauth2_as_a_server(Required scopes: groups.read) or oauth2_as_a_user(Required scopes: groups.read)
- US1https://partner.socialchorus.com/scim/v2/Groups/{group_id}
- US2https://partner.us2.onfirstup.com/scim/v2/Groups/{group_id}
- EUhttps://partner.onfirstup.eu/scim/v2/Groups/{group_id}
- oauth2_as_a_server
- oauth2_as_a_user
curl -i -X GET \
'https://partner.socialchorus.com/scim/v2/Groups/{group_id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Success
ID from provisioning system. This is the resource ID on the client system, not Firstup's ID.
Example:"1234qweasd567"
A list of members of the Group.
Example:
[ { "value": "3", "_$ref": "https://partner.socialchorus.com/scim/v2/Users/3" } ]
Response
{ "id": 115, "displayName": "Group of users", "externalId": "1234qweasd567", "description": "Group of iOS users from partner domain", "members": [ { … } ], "meta": { "resourceType": "Group", "created": "2022-05-13T13:32:00.598Z", "lastModified": "2022-05-13T13:32:00.598Z", "location": "https://partner.socialchorus.com/scim/v2/Groups/115", "next": "https://partner.socialchorus.com/scim/v2/Groups/115?page=2" }, "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:Group" ] }