v3
latestOpenAPI 3.0.12026-07-31240345599.7 KBEscalations
List escalations
Lists all escalations under given team. It optionally takes two parameters - offset and size.
get/api/{cloudId}/v1/teams/{teamId}/escalations
Path parameters
teamIdstring required
Identifier of the escalation owning team.
Query parameters
offsetinteger
The offset parameter controls the starting point within the collection of resource results.
sizeinteger
The limit parameter controls the maximum number of items that may be returned for a single request.
Response
Returned if the request is successful.
Example response
{
"values": [
{
"id": "69291859-ed73-4396-8b74-c61a3c810cdf",
"name": "FE Daily On-call Escalation",
"description": "Your primary responsibilities include handling unexpected incidents that impact the functionality or performance of the frontend",
"rules": [
{
"delay": 5,
"recipient": {
"id": "f0f07a3d-bde8-4b2a-8d3e-f97020a51e32",
"type": "team"
}
}
],
"repeat": {
"waitInterval": 10,
"count": 5
}
}
],
"links": {
"next": "/v1/teams/77b933c9-92bb-46e7-a73c-764b8d7c3c25/escalations?offset=10&size=5"
}
}