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

Retrieve a list of escalations requiring administrator attention, such as false positive reports, threat clarifications, and VPN logins.

<Note>
  External Documentation

  To learn more, visit the [Huntress documentation](https://api.huntress.io/docs#rest-api/tag/escalations/GET/v1/escalations).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                       |
  | ---------------- | ----------------------------------------------------------------------------------------------------------------- |
  | Limit            | The maximum number of results to return per page. Defaults to `10`, with a minimum of `1` and a maximum of `500`. |
  | Organization ID  | The ID of the organization to filter the results by.                                                              |
  | Page Token       | The token used to retrieve the next page of results.                                                              |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                  |
  | Severity         | Select the severity to filter the results by.                                                                     |
  | Sort Direction   | Select the sort direction for the results.                                                                        |
  | Sort Field       | Select the field to sort the results by.                                                                          |
  | Status           | Select the status to filter the escalations by.                                                                   |
  | Subtype          | The escalation subtype to filter the results by.                                                                  |
</div>

## Example Output

```json theme={"dark"}
{
	"escalations": [
		{
			"id": 84938,
			"account": {
				"id": 1,
				"name": "Your Account Name"
			},
			"organizations": [
				{
					"id": 1234,
					"name": "ExampleCo"
				}
			],
			"created_at": "2025-09-05T18:20:34Z",
			"resolved_at": "2025-09-05T18:20:34Z",
			"severity": "low",
			"status": "resolved",
			"subject": "Defender Disabled",
			"subtype": "US",
			"type": "Environmental Issue",
			"updated_at": "2025-09-05T18:20:34Z"
		}
	],
	"pagination": {
		"next_page_url": "string",
		"next_page_token": "string"
	}
}
```

## Workflow Library Example

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