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": "0fe7a268-c22c-48b4-af8c-13ffcb6fb8be",
"type": "escalation_policies",
"attributes": {
"name": "Odit possimus nihil repudiandae.",
"description": null,
"repeat_count": 1,
"created_by_user_id": 87,
"last_updated_by_user_id": 88,
"group_ids": [
"ad6f4474-4d6b-435f-a232-62e4d62e0f8b"
],
"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-07-31T05:02:14.420-07:00",
"updated_at": "2025-07-31T05:02:14.420-07:00"
},
"relationships": {
"escalation_levels": {
"data": [
{
"id": "94d53409-8327-4fa3-9732-1f6b316b0248",
"type": "escalation_levels"
}
]
},
"escalation_paths": {
"data": []
},
"groups": {
"data": [
{
"id": "ad6f4474-4d6b-435f-a232-62e4d62e0f8b",
"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": "0fe7a268-c22c-48b4-af8c-13ffcb6fb8be",
"type": "escalation_policies",
"attributes": {
"name": "Odit possimus nihil repudiandae.",
"description": null,
"repeat_count": 1,
"created_by_user_id": 87,
"last_updated_by_user_id": 88,
"group_ids": [
"ad6f4474-4d6b-435f-a232-62e4d62e0f8b"
],
"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-07-31T05:02:14.420-07:00",
"updated_at": "2025-07-31T05:02:14.420-07:00"
},
"relationships": {
"escalation_levels": {
"data": [
{
"id": "94d53409-8327-4fa3-9732-1f6b316b0248",
"type": "escalation_levels"
}
]
},
"escalation_paths": {
"data": []
},
"groups": {
"data": [
{
"id": "ad6f4474-4d6b-435f-a232-62e4d62e0f8b",
"type": "groups"
}
]
},
"services": {
"data": []
}
}
}
}