Update a specific escalation level by id
curl --request PUT \
--url https://api.rootly.com/v1/escalation_levels/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "escalation_levels",
"attributes": {
"delay": 123,
"position": 123,
"escalation_policy_path_id": "<string>",
"paging_strategy_configuration_strategy": "default",
"paging_strategy_configuration_schedule_strategy": "on_call_only",
"notification_target_params": [
{
"id": "<string>",
"type": "team",
"team_members": "all"
}
]
}
}
}
'{
"data": {
"id": "016b5bdf-08cb-423b-ba9e-93ae8109ad6b",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": null,
"position": 1,
"delay": 5,
"escalation_policy_id": "8e37d84c-a745-4bd0-b9f0-ab31d6fcb968",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-12-24T09:24:30.318-08:00",
"updated_at": "2025-12-24T09:24:30.318-08:00",
"notification_target_params": [
{
"id": "CX21345",
"type": "slack_channel",
"team_members": "all"
}
]
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
escalation policy updated with notification_target set with slack_channel_id instead of slack_channel uuid
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/escalation_levels/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "escalation_levels",
"attributes": {
"delay": 123,
"position": 123,
"escalation_policy_path_id": "<string>",
"paging_strategy_configuration_strategy": "default",
"paging_strategy_configuration_schedule_strategy": "on_call_only",
"notification_target_params": [
{
"id": "<string>",
"type": "team",
"team_members": "all"
}
]
}
}
}
'{
"data": {
"id": "016b5bdf-08cb-423b-ba9e-93ae8109ad6b",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": null,
"position": 1,
"delay": 5,
"escalation_policy_id": "8e37d84c-a745-4bd0-b9f0-ab31d6fcb968",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-12-24T09:24:30.318-08:00",
"updated_at": "2025-12-24T09:24:30.318-08:00",
"notification_target_params": [
{
"id": "CX21345",
"type": "slack_channel",
"team_members": "all"
}
]
}
}
}