> ## 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.

# List Users In Group

Retrieve a list of members of a specified group.

To fetch all results, run repeatedly with the `Offset` parameter as long as the result metadata has a `next_offset` value.

<Note>
  External Documentation

  To learn more, visit the [Duo documentation](https://duo.com/docs/adminapi#get-group-members).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                    |
  | --------- | ------------------------------ |
  | Group ID  | Group ID to look up users for. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                        |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Limit     | The maximum number of phones to retrieve. Defaults to `100` with a maximum of `500`.                                                                                                                               |
  | Offset    | The offset from 0 at which to start record retrieval.<br /><br />When used with `Limit`, the handler will return `limit` records starting at the n-th record, where `n` is the offset.<br /><br />Defaults to `0`. |
</div>

## Example Output

```json theme={"dark"}
{
	"metadata": {
		"total_objects": 1
	},
	"response": [
		{
			"user_id": "DUAL2RWXZLAF353T9DFH",
			"username": "test-user"
		}
	],
	"stat": "OK"
}
```

## Workflow Library Example

[List Users in Group with Duo and Send Results Via Email](https://library.blinkops.com/workflows/list-users-in-group-with-duo-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/list-users-in-group-with-duo-and-send-results-via-email/canvas" />
</div>
