> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Group

Get the details of a group and its associated members.

The response behavior depends on your tenant's group size configuration:

* Large group support enabled: Retrieve status code 207 when groups have more than 10,000 members. Get the returned status code by selecting `Include Full Response` in the settings menu.
* Large group support disabled: Retrieve paginated results with up to 2,500 members per call using bookmarks.

At least one of the following entitlements is required for using this action:

* `readUserGroups` (Read users and groups)
* `manageUserGroups` (Manage users and groups)
* `manageAllUserGroups` (Synchronize users and groups)
* `manageUserStandardGroups` (Manage users and standard groups)
* `readGroups` (Read all groups but not their members)
* `readStandardGroups` (Read standard groups but not their members)
* `readGroupMembers` (Read all groups and their members)
* `readStandardGroupMembers` (Read standard groups and their members)
* `manageGroups` (Manage all groups but not their members)
* `manageStandardGroups` (Manage standard groups but not their members)
* `manageGroupMembers` (Manage all group and their members)
* `manageStandardGroupMembers` (Manage standard groups and their members)

<Note>
  External Documentation

  To learn more, visit the [IBM Security Verify documentation](https://docs.verify.ibm.com/verify/reference/getgroup).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter          | Description                                                                                                                         |
  | ------------------ | ----------------------------------------------------------------------------------------------------------------------------------- |
  | ID                 | The unique identifier of the group to get details on.                                                                               |
  | Member Attributes  | A comma-separated list of member attributes to include in the response.                                                             |
  | Member Count       | The maximum number of group members to return.<br /><br />Set to `0` to return only the total count, excluding the list of members. |
  | Member Start Index | The starting index for paginated member results.                                                                                    |
  | Membership Type    | Selects the type of group members to retrieve.                                                                                      |
  | Next Page          | A pagination token for retrieving the next page of members. Obtained from previous response when results are paginated.             |
</div>

## Example Output

```json theme={"dark"}
{
	"schemas": [
		"string"
	],
	"id": "string",
	"displayName": "string",
	"urn:ietf:params:scim:schemas:extension:ibm:2.0:Group": {
		"description": "string",
		"groupType": "standard",
		"totalMembers": 0,
		"attachedPasswordPolicy": {
			"value": "string",
			"$ref": "string",
			"name": "string"
		}
	},
	"meta": {
		"resourceType": "string",
		"created": "string",
		"lastModified": "string",
		"location": "string",
		"deactivated": "api"
	},
	"externalId": "string"
}
```

## Workflow Library Example

[Get Group with Ibm Security Verify and Send Results Via Email](https://library.blinkops.com/workflows/get-group-with-ibm-security-verify-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-group-with-ibm-security-verify-and-send-results-via-email/canvas" />
</div>
