DELETE
/
v1
/
escalation_policies
/
{id}
Delete an escalation policy
curl --request DELETE \
  --url https://api.rootly.com/v1/escalation_policies/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "d38779db-6155-416c-9842-4bcaf1cf1b41",
    "type": "escalation_policies",
    "attributes": {
      "name": "Corrupti eos occaecati aliquid.",
      "description": null,
      "repeat_count": 1,
      "created_by_user_id": 86,
      "last_updated_by_user_id": 87,
      "group_ids": [],
      "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-11T12:24:35.263-07:00",
      "updated_at": "2025-07-11T12:24:44.437-07:00"
    },
    "relationships": {
      "escalation_levels": {
        "data": [
          {
            "id": "a15f58ea-7a71-4679-9332-306ba7993a81",
            "type": "escalation_levels"
          }
        ]
      },
      "escalation_paths": {
        "data": []
      },
      "groups": {
        "data": []
      },
      "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

Response

200
application/vnd.api+json

escalation policy deleted

The response is of type object.