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": "47ebf890-11b1-409d-a781-6c9e0558fa06",
"type": "escalation_policies",
"attributes": {
"name": "Dolorem ut ut in.",
"description": null,
"repeat_count": 1,
"created_by_user_id": 103,
"last_updated_by_user_id": 104,
"group_ids": [
"1ada9b8f-6a00-42b9-899e-516382a86a64"
],
"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-09-10T22:59:49.973-07:00",
"updated_at": "2025-09-10T22:59:49.973-07:00"
},
"relationships": {
"escalation_levels": {
"data": [
{
"id": "794d09a9-69ee-4ed8-a0d4-a05e16600e5d",
"type": "escalation_levels"
}
]
},
"escalation_paths": {
"data": []
},
"groups": {
"data": [
{
"id": "1ada9b8f-6a00-42b9-899e-516382a86a64",
"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": "47ebf890-11b1-409d-a781-6c9e0558fa06",
"type": "escalation_policies",
"attributes": {
"name": "Dolorem ut ut in.",
"description": null,
"repeat_count": 1,
"created_by_user_id": 103,
"last_updated_by_user_id": 104,
"group_ids": [
"1ada9b8f-6a00-42b9-899e-516382a86a64"
],
"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-09-10T22:59:49.973-07:00",
"updated_at": "2025-09-10T22:59:49.973-07:00"
},
"relationships": {
"escalation_levels": {
"data": [
{
"id": "794d09a9-69ee-4ed8-a0d4-a05e16600e5d",
"type": "escalation_levels"
}
]
},
"escalation_paths": {
"data": []
},
"groups": {
"data": [
{
"id": "1ada9b8f-6a00-42b9-899e-516382a86a64",
"type": "groups"
}
]
},
"services": {
"data": []
}
}
}
}