v3

latestOpenAPI 3.0.12026-07-31240345599.7 KB
Escalations

Create escalation

Creates an escalation with the given properties.

post/api/{cloudId}/v1/teams/{teamId}/escalations

Path parameters

teamIdstring required

Identifier of the escalation owning team.

Request body

namestring required

Name of the escalation.

descriptionstring

Description of the escalation.

enabledboolean

Example request

{
  "name": "FE Daily On-call Escalation",
  "rules": [
    {
      "delay": 5,
      "recipient": {
        "id": "f0f07a3d-bde8-4b2a-8d3e-f97020a51e32",
        "type": "team"
      }
    }
  ],
  "repeat": {
    "waitInterval": 10,
    "count": 5
  }
}

Response

Returned if the request is successful.

idstring

Identifier of the escalation.

namestring

Name of the escalation.

descriptionstring

Description of the escalation.

enabledboolean

Example response

{
  "id": "69291859-ed73-4396-8b74-c61a3c810cdf",
  "name": "FE Daily On-call Escalation",
  "description": "Your primary responsibilities include handling unexpected incidents that impact the functionality or performance of the frontend",
  "rules": [
    {
      "delay": 5,
      "recipient": {
        "id": "f0f07a3d-bde8-4b2a-8d3e-f97020a51e32",
        "type": "team"
      }
    }
  ],
  "repeat": {
    "waitInterval": 10,
    "count": 5
  }
}