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

Retrieves a list of all users with access to an organization.

<Note>
  External Documentation

  To learn more, visit the [Automox documentation](https://developer.automox.com/openapi/axconsole/operation/getUsers/).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                              |
  | --------------- | ------------------------------------------------------------------------------------------------------------------------ |
  | Organization ID | The Organization ID you wish to list from.<br />The organization will be assumed based on the API key, if not specified. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                       |
  | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Limit     | A limit on the number of results to be returned, between `1` and `500`, with a default of `500`. Use with `page` parameter.<br />See [About Automox API - Pagination](https://developer.automox.com/developer-portal#pagination). |
  | Page      | The page of results you wish to be returned with page numbers starting at `0`.<br />See [About Automox API - Pagination](https://developer.automox.com/developer-portal#pagination).                                              |
</div>

## Example Output

```json theme={"dark"}
[
	{
		"email": "string",
		"features": {
			"mo": false
		},
		"firstname": "string",
		"id": 0,
		"lastname": "string",
		"orgs": [
			{
				"access_key": "string",
				"create_time": "date-time",
				"id": 0,
				"metadata": {},
				"name": "Zone name",
				"plan": "The billing plan for the organization/zone",
				"saml": {
					"enabled": false,
					"redirect": "string"
				},
				"trial_end_time": "date-time",
				"trial_expired": false,
				"zone_id": "Zone ID"
			}
		],
		"prefs": [
			{
				"pref_name": "string",
				"user_id": 0,
				"value": "string"
			}
		],
		"rbac_roles": [
			{
				"description": "string",
				"id": 0,
				"name": "string",
				"organization_id": 0
			}
		],
		"saml_enabled": false,
		"server_groups": [
			0
		],
		"sso_enabled": false,
		"tags": [
			"string"
		]
	}
]
```

## Workflow Library Example

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