> ## 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 In Organization

Retrieve a list of all users in your 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. |
  | Page Number       | The page number being requested. If greater than last page number, returns the last page of users.                                                                                                                                                    |
</div>

## Example Output

```json theme={"dark"}
{
	"lastPage": false,
	"result": "success",
	"users": [
		{
			"email": "psmith@example.com",
			"status": "active",
			"username": "psmith",
			"domain": "example.com",
			"country": "US",
			"type": "federatedID"
		},
		{
			"email": "jane@example.com",
			"status": "active",
			"groups": [
				"Marketing Cloud 1",
				"Marketing Cloud 2",
				"Creative Cloud 1",
				"Document Cloud 1",
				"_admin_Document Cloud 1",
				"_admin_Support for AEM Mobile",
				"_admin_Default Support configuration",
				"_admin_Creative Cloud 1"
			],
			"username": "jane",
			"domain": "example.com",
			"firstname": "Jane",
			"lastname": "Doe",
			"country": "US",
			"type": "federatedID"
		},
		{
			"email": "joe@example.com",
			"status": "active",
			"groups": [
				"Document Cloud 1",
				"Support for AEM Mobile",
				"_admin_Document Cloud 1",
				"_admin_Support for AEM Mobile",
				"_admin_Default Support configuration",
				"_admin_Creative Cloud 1",
				"_deployment_admin",
				"_developer_Document Cloud 1"
			],
			"username": "joe",
			"domain": "example.com",
			"firstname": "First",
			"lastname": "Last",
			"country": "US",
			"type": "federatedID"
		}
	]
}
```

## Workflow Library Example

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