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

Retrieve a list of all users, including accepted, invited, and Slack users.

<Note>
  External Documentation

  To learn more, visit the [Onyx documentation](https://docs.onyx.app/developers/api_reference/user_management/list_all_users).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                     |
  | ---------------- | ----------------------------------------------- |
  | Accepted Page    | The page number of accepted users to retrieve.  |
  | Include API Keys | Select to include API key users in the results. |
  | Invited Page     | The page number of invited users to retrieve.   |
  | Query            | The search query to filter users by.            |
  | Slack Users Page | The page number of Slack users to retrieve.     |
</div>

## Example Output

```json theme={"dark"}
{
	"accepted": [
		{
			"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
			"email": "<string>",
			"is_active": true,
			"password_configured": true
		}
	],
	"invited": [
		{
			"email": "<string>"
		}
	],
	"slack_users": [
		{
			"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
			"email": "<string>",
			"is_active": true,
			"password_configured": true
		}
	],
	"accepted_pages": 123,
	"invited_pages": 123,
	"slack_users_pages": 123
}
```

## Workflow Library Example

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