GET
/
v1
/
escalation_policies
/
{id}
Retrieves an escalation policy
curl --request GET \
  --url https://api.rootly.com/v1/escalation_policies/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "4887250c-a6c3-47da-880b-18e64df7a41c",
    "type": "escalation_policies",
    "attributes": {
      "name": "Rerum sed ut sed.",
      "description": null,
      "repeat_count": 1,
      "created_by_user_id": 86,
      "last_updated_by_user_id": 87,
      "group_ids": [
        "f504ef62-c0cb-4de6-8ff7-6e3176387e8a"
      ],
      "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-15T14:29:06.482-07:00",
      "updated_at": "2025-07-15T14:29:06.482-07:00"
    },
    "relationships": {
      "escalation_levels": {
        "data": [
          {
            "id": "65e39d74-786b-484c-9a7e-72a14c3374a5",
            "type": "escalation_levels"
          }
        ]
      },
      "escalation_paths": {
        "data": []
      },
      "groups": {
        "data": [
          {
            "id": "f504ef62-c0cb-4de6-8ff7-6e3176387e8a",
            "type": "groups"
          }
        ]
      },
      "services": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: escalation_policy_levels,escalation_policy_paths

Available options:
escalation_policy_levels,
escalation_policy_paths,
groups,
services

Response

200
application/vnd.api+json

escalation policy found

The response is of type object.