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

<Note>
  External Documentation

  To learn more, visit the [Reco documentation](https://readme.reco.ai/reference/listidentities).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                                              |
  | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Count            | The maximum number of results to return per page.                                                                                                                                                                                                                                        |
  | Filters          | A query expression used to filter results. <br />        <br />**For Example:** `status eq "ALERT_STATUS_NEW"`<br />        <br />For more information about the `Filters` parameter, visit [Reco.ai documentation](https://readme.reco.ai/docs/external-api-service#scim-v2-filtering). |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                         |
  | Sort By          | The field name to sort results by.                                                                                                                                                                                                                                                       |
  | Sort Order       | The sort direction for the results.                                                                                                                                                                                                                                                      |
  | Start Index      | The pagination index that indicates the starting point for the next set of results.                                                                                                                                                                                                      |
</div>

## Example Output

```json theme={"dark"}
{
	"totalResults": "string",
	"itemsPerPage": "string",
	"users": [
		{
			"id": "string",
			"name": "string",
			"email": "string",
			"departments": [
				"string"
			],
			"jobTitles": [
				"string"
			],
			"personalEmails": [
				"string"
			],
			"relatedEmails": [
				"string"
			],
			"analysis": [
				"string"
			],
			"adminAccounts": 0,
			"accounts": 0,
			"openAlerts": 0,
			"isFormer": true,
			"hasAccess": true,
			"lastSeen": "2026-05-10T13:31:53.049Z",
			"lastLogin": "2026-05-10T13:31:53.049Z",
			"isInternal": true
		}
	]
}
```

## Workflow Library Example

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