# Returns the details of the given Group, including its members Returns the group specified by the . Groups are defined by the SCIM specification. Endpoint: GET /scim/v2/Groups/{group_id} Version: v2 Security: oauth2_as_a_server, oauth2_as_a_user ## Path parameters: - `group_id` (string, required) ID of the group to look up. ## Response 200 fields (application/scim+json): - `id` (integer) Group unique id Example: 115 - `displayName` (string) A human-readable name for the Group. REQUIRED. Example: "Group of users" - `externalId` (string) ID from provisioning system. This is the resource ID on the client system, not Firstup's ID. Example: "1234qweasd567" - `description` (string) Description for the Group. Example: "Group of iOS users from partner domain" - `members` (array) A list of members of the Group. Example: [{"value":"3","_$ref":"https://partner.socialchorus.com/scim/v2/Users/3"}] - `members.value` (string) unique member identifier Example: 1 - `members.$ref` (string) reference to a member Example: "https://partner.socialchorus.com/scim/v2/Users/1" - `meta` (object) - `meta.resourceType` (string) Example: "Group" - `meta.created` (string) date and time when the group was created Example: "2022-05-13T13:32:00.598Z" - `meta.lastModified` (string) date and time when the group was last updated Example: "2022-05-13T13:32:00.598Z" - `meta.location` (string) URL of the group Example: "https://partner.socialchorus.com/scim/v2/Groups/115" - `meta.next` (string) URL of the next page of group Example: "https://partner.socialchorus.com/scim/v2/Groups/115?page=2" - `schemas` (array) Example: ["urn:ietf:params:scim:schemas:core:2.0:Group"] ## Response 400 fields (*/*): - `schemas` (array) Example: ["urn:ietf:params:scim:api:messages:2.0:Error"] - `detail` (string) Example: "Reason for bad request" - `status` (integer) Example: 400 ## Response 401 fields (*/*): - `schemas` (array) Example: ["urn:ietf:params:scim:api:messages:2.0:Error"] - `detail` (string) Example: "Authentication failure" - `status` (integer) Example: 401 ## Response 403 fields (*/*): - `schemas` (array) Example: ["urn:ietf:params:scim:api:messages:2.0:Error"] - `detail` (string) Example: "Operation is not permitted" - `status` (integer) Example: 403 ## Response 404 fields (*/*): - `schemas` (array) Example: ["urn:ietf:params:scim:api:messages:2.0:Error"] - `detail` (string) Example: "The requested resource was not found." - `status` (integer) Example: 404