> ## 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 Team Escalation Policies

List all signals escalation policies for a team.

<Note>
  External Documentation

  To learn more, visit the [FireHydrant documentation](https://docs.firehydrant.com/reference/list_team_escalation_policies).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                     |
  | --------- | --------------------------------------------------------------- |
  | Page      | The page number to show results from.                           |
  | Per Page  | Maximum number of results to return.                            |
  | Query     | A query for searching through the list of escalation policies.  |
  | Team ID   | The ID of the team to list all signals escalation policies for. |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"id": "string",
			"name": "string",
			"description": "string",
			"default": true,
			"repetitions": 0,
			"steps": [
				{
					"id": "string",
					"position": 0,
					"parent_position": 0,
					"targets": [
						{
							"id": "string",
							"name": "string",
							"type": "string",
							"is_pageable": true
						}
					],
					"timeout": "string",
					"distribution_type": "unspecified",
					"next_target_for_round_robin": {
						"id": "string",
						"name": "string",
						"type": "string",
						"is_pageable": true
					},
					"priorities": [
						"string"
					]
				}
			],
			"handoff_step": {
				"id": "string",
				"target": {
					"id": "string",
					"name": "string",
					"type": "string",
					"is_pageable": true
				}
			},
			"created_by": {
				"id": "string",
				"name": "string",
				"source": "string",
				"email": "string"
			},
			"created_at": "2025-07-16T08:55:30.705Z",
			"updated_at": "2025-07-16T08:55:30.705Z",
			"step_strategy": "string",
			"notification_priority_policies": [
				{
					"notification_priority": "string",
					"repetitions": 0,
					"handoff_step": {
						"id": "string",
						"target": {
							"id": "string",
							"name": "string",
							"type": "string",
							"is_pageable": true
						}
					},
					"steps": [
						{
							"id": "string",
							"position": 0,
							"parent_position": 0,
							"targets": [
								{
									"id": "string",
									"name": "string",
									"type": "string",
									"is_pageable": true
								}
							],
							"timeout": "string",
							"distribution_type": "unspecified",
							"next_target_for_round_robin": {
								"id": "string",
								"name": "string",
								"type": "string",
								"is_pageable": true
							},
							"priorities": [
								"string"
							]
						}
					]
				}
			]
		}
	],
	"pagination": {
		"count": 0,
		"page": 0,
		"items": 0,
		"pages": 0,
		"last": 0,
		"prev": 0,
		"next": 0
	}
}
```

## Workflow Library Example

[List Team Escalation Policies with Firehydrant and Send Results Via Email](https://library.blinkops.com/workflows/list-team-escalation-policies-with-firehydrant-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-team-escalation-policies-with-firehydrant-and-send-results-via-email/canvas" />
</div>
