PUT
/
v1
/
escalation_policies
/
{id}
Update an escalation policy
curl --request PUT \
  --url https://api.rootly.com/v1/escalation_policies/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "escalation_policies",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "repeat_count": 123,
      "group_ids": [
        "<string>"
      ],
      "service_ids": [
        "<string>"
      ],
      "business_hours": {
        "time_zone": "<string>",
        "days": [
          "M"
        ],
        "start_time": "<string>",
        "end_time": "<string>"
      }
    }
  }
}'
{
  "data": {
    "id": "333361ba-3518-4e38-a5ce-360f015e388e",
    "type": "escalation_policies",
    "attributes": {
      "name": "Platform EP",
      "description": "test",
      "repeat_count": 2,
      "created_by_user_id": 87,
      "last_updated_by_user_id": 88,
      "group_ids": [
        "bb27f0bc-549b-4987-8d09-807f094381d9"
      ],
      "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:42:22.125-07:00",
      "updated_at": "2025-08-21T23:42:28.361-07:00"
    },
    "relationships": {
      "escalation_levels": {
        "data": [
          {
            "id": "1e5fb98f-d0f9-4a50-80e1-4ab8d6a49659",
            "type": "escalation_levels"
          }
        ]
      },
      "escalation_paths": {
        "data": []
      },
      "groups": {
        "data": [
          {
            "id": "bb27f0bc-549b-4987-8d09-807f094381d9",
            "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

Body

application/vnd.api+json

Response

200
application/vnd.api+json

escalation policy updated

The response is of type object.