CreateEscalationPolicy
Create a new escalation policy with rules and notification targets
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Request Inputs
Body Fields
nameStringRequiredName of the escalation policy to create
Example: Critical Alert Policy
descriptionStringRequiredDescription of the escalation policy
Example: Escalation policy for P0 incidents
rulesListRequiredOrdered list of escalation rules for this policy
Example: (nested array)
levelIntegerEscalation level number (starting from 1)
Example: 1
targetsListList of user or group IDs to notify at this escalation level
Example: item1,item2
timeoutStringDuration to wait before escalating to the next level
Example: 15m
notifyMethodsListNotification channels used at this escalation level
Example: item1,item2
repeatCountIntegerRequiredNumber of times to repeat the full escalation cycle if unacknowledged
Example: 3
Responses
Endpoint
POST/api/v1/oncall/escalation-policies
/api/v1/oncall/escalation-policies
Request Example
curl -X POST '{host}/api/v1/oncall/escalation-policies' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"name":"Critical Alert Policy","description":"Escalation policy for P0 incidents","rules":"(nested array)","repeatCount":3}'
Response Example
200{
"uuid": "pol-11223344",
"name": "Critical Alert Policy",
"description": "Escalation policy for P0 incidents",
"rules": [
{}
],
"repeatCount": 3,
"createDate": "example",
"lastOpDate": "example"
}Change History
This API has no change history records yet.
