POST
/
v1
/
alert_urgencies
Creates an alert urgency
curl --request POST \
  --url https://api.rootly.com/v1/alert_urgencies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "alert_urgencies",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "bb5f8b74-c13a-46cd-942f-6ed72ed79087",
    "type": "alert_urgencies",
    "attributes": {
      "name": "High",
      "description": "Hight alert urgency",
      "position": 1,
      "created_at": "2025-09-18T20:52:21.021-07:00",
      "updated_at": "2025-09-18T20:52:21.021-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/vnd.api+json
data
object
required

Response

alert urgency created

data
object
required