> ## 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 Users By Group

Gets a paged list of users in a specific group of an organization along with information about them.

## Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                                                                                                                                                                                                                                                                                                                                                                                       |
  | ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Direct Membership | Controls whether the groups field in the returned user structure contains only those product profiles of which that user is a direct member.<br />If false, returns all groups (user groups, product profiles, and admin groups) containing the user.                                                                                                                                                                                             |
  | Group Name        | The user group, product profile name or an administrative group.<br />For an admin group, the name can be one of the fixed groups \_org\_admin, `_deployment_admin`, or `_support_admin`; or a group-specific admin group.<br />These are identified with a prefix on the group name `_admin_groupName` , `_product_admin_productName`, `_developer_groupName`.<br />If the group exists but the admin group does not, an empty list is returned. |
  | Page Number       | The page number being requested. If greater than existing number of pages, returns the last page of users.                                                                                                                                                                                                                                                                                                                                        |
</div>

## Example Output

```json theme={"dark"}
{
	"lastPage": false,
	"result": "success",
	"groupName": "Document Cloud 1",
	"users": [
		{
			"email": "john@example.com",
			"status": "active",
			"groups": [
				"Document Cloud 1"
			],
			"username": "john",
			"domain": "example.com",
			"country": "US",
			"type": "federatedID"
		},
		{
			"email": "jane@example.com",
			"status": "active",
			"groups": [
				"Document Cloud 1",
				"Support for AEM Mobile",
				"_admin_Document Cloud 1",
				"_admin_Support for AEM Mobile",
				"_admin_Default Support profile",
				"_admin_Creative Cloud 1",
				"_deployment_admin",
				"_developer_Document Cloud 1"
			],
			"username": "jane",
			"domain": "example.com",
			"country": "US",
			"type": "federatedID"
		},
		{
			"email": "bob@example.com",
			"status": "active",
			"groups": [
				"Document Cloud 1",
				"Creative Cloud 1"
			],
			"username": "bob",
			"domain": "example.com",
			"country": "US",
			"type": "federatedID"
		}
	]
}
```

## Workflow Library Example

[Get Users by Group with Adobe Cloud and Send Results Via Email](https://library.blinkops.com/workflows/get-users-by-group-with-adobe-cloud-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-users-by-group-with-adobe-cloud-and-send-results-via-email/canvas" />
</div>
