Overview
Reference
- AlertEvents
- AlertGroups
- AlertUrgencies
- AlertSources
- Alerts
- Audits
- Authorizations
- CatalogEntities
- CatalogEntityProperties
- CatalogFields
- Catalogs
- Causes
- [DEPRECATED] CustomFieldOptions
- [DEPRECATED] CustomFields
- CustomForms
- DashboardPanels
- Dashboards
- Environments
- EscalationPolicies
- EscalationLevelsPolicies
- EscalationLevelsPath
- EscalationLevels
- EscalationPaths
- FormFieldOptions
- FormFieldPlacementConditions
- FormFieldPlacements
- FormFieldPositions
- FormFields
- FormSetConditions
- FormSets
- Functionalities
- WorkflowTasks
- [DEPRECATED] WorkflowCustomFieldSelections
- WorkflowFormFieldConditions
- WorkflowGroups
- WorkflowRuns
- Workflows
- Heartbeats
- IncidentActionItems
- [DEPRECATED] IncidentCustomFieldSelections
- IncidentEventFunctionalities
- IncidentEventServices
- IncidentEvents
- IncidentFeedbacks
- IncidentFormFieldSelections
- IncidentPermissionSetBooleans
- IncidentPermissionSetResources
- IncidentPermissionSets
- IncidentRetrospectives
- IncidentRetrospectiveSteps
- IncidentRoleTasks
- IncidentRoles
- IncidentStatusPageEvents
- IncidentSubStatuses
- IncidentTypes
- Incidents
- IpRanges
- LiveCallRouters
- OnCallRoles
- OnCallShadows
- OverrideShifts
- PlaybookTasks
- Playbooks
- RetrospectiveTemplates
- Pulses
- RetrospectiveConfigurations
- RetrospectiveProcessGroupSteps
- RetrospectiveProcessGroups
- RetrospectiveProcesses
- RetrospectiveSteps
- Roles
- ScheduleRotationActiveDays
- ScheduleRotationUsers
- ScheduleRotations
- Schedules
- Shifts
- Secrets
- Services
- Severities
- StatusPageTemplates
- StatusPages
- SubStatuses
- Teams
- UserNotificationRules
- Users
- WebhooksDeliveries
- WebhooksEndpoints
Update an escalation level
Update a specific escalation level by id
curl --request PUT \
--url https://api.rootly.com/v1/escalation_levels/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "d4491056-4836-49f6-b9b0-315366f4928f",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": null,
"position": 1,
"delay": 5,
"escalation_policy_id": "3de3b327-a63b-481b-b69e-94baf7de3d6f",
"created_at": "2025-03-13T12:00:16.947-07:00",
"updated_at": "2025-03-13T12:00:16.947-07:00",
"notification_target_params": [
{
"id": "CX21345",
"type": "slack_channel",
"team_members": "all"
}
]
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
escalation_levels
Delay before notification targets will be alerted.
Position of the escalation policy level
The ID of the dynamic escalation policy path the level will belong to. If nothing is specified it will add the level to your default path.
Escalation level's notification targets
The ID of notification target
The type of the notification target
team
, user
, schedule
, slack_channel
all
, admins
Response
Unique ID of the escalation policy level
The ID of the escalation policy
Delay before notification targets will be alerted.
Position of the escalation policy level
Escalation level's notification targets
The ID of notification target
The type of the notification target
team
, user
, schedule
, slack_channel
all
, admins
The ID of the dynamic escalation policy path the level will belong to. If nothing is specified it will add the level to your default path.
Date of creation
Date of last update
escalation_levels
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/escalation_levels/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "d4491056-4836-49f6-b9b0-315366f4928f",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": null,
"position": 1,
"delay": 5,
"escalation_policy_id": "3de3b327-a63b-481b-b69e-94baf7de3d6f",
"created_at": "2025-03-13T12:00:16.947-07:00",
"updated_at": "2025-03-13T12:00:16.947-07:00",
"notification_target_params": [
{
"id": "CX21345",
"type": "slack_channel",
"team_members": "all"
}
]
}
}
}