Retrieves a specific escalation policy by id
curl --request GET \
--url https://api.rootly.com/v1/escalation_policies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "85edc885-6f9c-4b20-a5dc-2c93779a9385",
"type": "escalation_policies",
"attributes": {
"name": "Delectus blanditiis error ut.",
"description": null,
"repeat_count": 1,
"created_by_user_id": 87,
"last_updated_by_user_id": 88,
"group_ids": [
"8156f4e4-4068-45de-b821-83de884a7ad3"
],
"service_ids": [],
"business_hours": {
"time_zone": null,
"days": [
"F",
"M",
"T",
"R",
"W"
],
"start_time": "09:00 AM",
"end_time": "05:00 PM"
},
"created_at": "2025-08-21T23:31:15.688-07:00",
"updated_at": "2025-08-21T23:31:15.688-07:00"
},
"relationships": {
"escalation_levels": {
"data": [
{
"id": "af013263-e2c5-4b05-a1af-64ef3d10ef08",
"type": "escalation_levels"
}
]
},
"escalation_paths": {
"data": []
},
"groups": {
"data": [
{
"id": "8156f4e4-4068-45de-b821-83de884a7ad3",
"type": "groups"
}
]
},
"services": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
comma separated if needed. eg: escalation_policy_levels,escalation_policy_paths
escalation_policy_levels
, escalation_policy_paths
, groups
, services
escalation policy found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/escalation_policies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "85edc885-6f9c-4b20-a5dc-2c93779a9385",
"type": "escalation_policies",
"attributes": {
"name": "Delectus blanditiis error ut.",
"description": null,
"repeat_count": 1,
"created_by_user_id": 87,
"last_updated_by_user_id": 88,
"group_ids": [
"8156f4e4-4068-45de-b821-83de884a7ad3"
],
"service_ids": [],
"business_hours": {
"time_zone": null,
"days": [
"F",
"M",
"T",
"R",
"W"
],
"start_time": "09:00 AM",
"end_time": "05:00 PM"
},
"created_at": "2025-08-21T23:31:15.688-07:00",
"updated_at": "2025-08-21T23:31:15.688-07:00"
},
"relationships": {
"escalation_levels": {
"data": [
{
"id": "af013263-e2c5-4b05-a1af-64ef3d10ef08",
"type": "escalation_levels"
}
]
},
"escalation_paths": {
"data": []
},
"groups": {
"data": [
{
"id": "8156f4e4-4068-45de-b821-83de884a7ad3",
"type": "groups"
}
]
},
"services": {
"data": []
}
}
}
}