# Generic SCIM Endpoint - Get Group

The Get Group endpoint returns details about the requested group.

### Request

#### Endpoint

`/provisioning/generic/v2/Groups/<ID>`

#### HTTP method

`GET`

#### Path variables

| Variable | Requirement | Description | Notes                                     | Example   |
| -------- | ----------- | ----------- | ----------------------------------------- | --------- |
| `<ID>`   | Required    | The role ID | Returns a 404 if the role ID is not found | `r-00001` |

#### Example request

`GET app.strongdm.com/provisioning/generic/v2/Groups/r-0d6247fd617197d8`

### Response

#### Example success response

```http
(Status 200)
```

```json
{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group"],
  "displayName": "Role",
  "id": "r-0d6247fd617197d8",
  "members": [],
  "meta": { "resourceType": "Group", "location": "Groups/r-0d6247fd617197d8" }
}
```

#### Example response if ID is not found

```json
{
  "schemas": ["urn:ietf:params:scim:api:messages:2.0:Error"],
  "detail": "Resource r-0910a0945 not found.",
  "status": "404"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.strongdm.com/references/scim/groups/get.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
