# Retrieve a known group Retrieve a known group by their ID. > : This checks the group is present in the SCIM application. Endpoint: GET /scim/v2/Groups/{groupId} Version: latest Security: BearerAuth ## Path parameters: - `groupId` (string, required) The group ID. Example: "2819c223-7f76-453a-919d-413861904646" ## Response 200 fields (application/json): - `schemas` (array, required) Example: ["urn:ietf:params:scim:schemas:core:2.0:Group"] - `id` (string) A unique identifier for a SCIM resource as defined by the service provider. Example: "2819c223-7f76-453a-919d-413861904646" - `externalId` (string) A String that is an identifier for the resource as defined by the provisioning client. - `displayName` (string, required) A human-readable name for the Group. Example: "Tour Guides" - `members` (array) 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"}] - `members.value` (string) Value of an "id" attribute of a SCIM resource - `members.$ref` (any) The URI of a SCIM resource such as a "User", or a "Group" - `resourceType` (string) The name of the resource type of the resource. - `created` (string) The "DateTime" that the resource was added to the service provider. - `lastModified` (string) The most recent DateTime that the details of this resource were updated at the service provider. - `location` (string) The URI of the resource being returned. - `version` (string) The version of the resource being returned.