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
EscalationLevels
Retrieves an escalation level
EscalationLevels
Retrieves an escalation level
Retrieves a specific escalation level by id
GET
/
v1
/
escalation_levels
/
{id}
curl --request GET \
--url https://api.rootly.com/v1/escalation_levels/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"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": "111",
"type": "user",
"team_members": "all"
}
]
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/vnd.api+json
escalation level found
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
Available options:
team
, user
, schedule
, slack_channel
Available options:
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
Available options:
escalation_levels
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/escalation_levels/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"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": "111",
"type": "user",
"team_members": "all"
}
]
}
}
}