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

Retrieve a list of accounts across connected SaaS apps.

**Note**: Each account references an identity via `identityId`.

<Note>
  External Documentation

  To learn more, visit the [Reco documentation](https://readme.reco.ai/reference/listaccounts).
</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",
	"accounts": [
		{
			"id": "string",
			"name": "string",
			"instance": {
				"id": "string",
				"appName": "string"
			},
			"accountEmail": "string",
			"lastSeen": "2026-05-10T13:31:36.042Z",
			"analysis": [
				"string"
			],
			"hasMfa": "string",
			"roles": [
				"string"
			],
			"permissions": "string",
			"openAlerts": 0,
			"lastExtractionTime": "2026-05-10T13:31:36.042Z",
			"departmentName": [
				"string"
			],
			"businessUnit": [
				"string"
			],
			"relatedEmails": [
				"string"
			],
			"profiles": [
				"string"
			],
			"permissionSets": [
				"string"
			],
			"authType": [
				"string"
			],
			"createTime": "2026-05-10T13:31:36.042Z",
			"identityId": "string",
			"isAdmin": true,
			"isFormerUser": true,
			"isInactive": true
		}
	]
}
```

## Workflow Library Example

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