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

List all accounts and their data. This command gives the Account IDs, which other commands require.

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                  |
  | ---------------- | ---------------------------------------------------------------------------------------------------------------------------- |
  | Cursor           | Cursor position returned by the last request. Use to iterate over more than 1000 items. Example: "YWdlbnRfaWQ6NTgwMjkzODE=". |
  | Limit            | Limit number of returned items (1-1000). Example: "10".                                                                      |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                             |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"accountType": "<string>",
			"activeAgents": 517,
			"agentsInCompleteSku": 548,
			"agentsInControlSku": 205,
			"agentsInCoreSku": 96,
			"billingMode": "<string>",
			"completeSites": 953,
			"controlSites": 625,
			"coreSites": 7,
			"createdAt": "2023-01-03T21:21:26",
			"creator": null,
			"creatorId": null,
			"expiration": "2021-06-10T04:37:10",
			"externalId": "<string>",
			"id": "<string>",
			"irFields": null,
			"isDefault": true,
			"licenses": {
				"bundles": [
					{
						"displayName": "<string>",
						"majorVersion": 84,
						"minorVersion": 352,
						"name": "<string>",
						"surfaces": [
							{
								"count": 907,
								"name": "<string>"
							}
						],
						"totalSurfaces": 231
					}
				],
				"modules": [
					{
						"displayName": "<string>",
						"majorVersion": 298,
						"name": "<string>"
					}
				],
				"settings": [
					{
						"displayName": "<string>",
						"groupName": "<string>",
						"setting": "<string>",
						"settingGroup": "<string>",
						"settingGroupDisplayName": "<string>"
					}
				]
			},
			"name": "<string>",
			"numberOfSites": 286,
			"salesforceId": "<string>",
			"skus": [
				{
					"agentsInSku": 374,
					"totalLicenses": 991,
					"type": "<string>",
					"unlimited": false
				}
			],
			"state": "<string>",
			"totalComplete": 268,
			"totalControl": 790,
			"totalCore": 213,
			"totalLicenses": 832,
			"unlimitedComplete": true,
			"unlimitedControl": false,
			"unlimitedCore": false,
			"unlimitedExpiration": false,
			"updatedAt": "2022-06-27T15:55:20",
			"usageType": "<string>"
		}
	],
	"pagination": {
		"nextCursor": null,
		"totalItems": 571
	}
}
```

## Workflow Library Example

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