POST
/
v1
/
alert_urgencies
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": "a21883e2-3b99-4986-a9ce-a86ff91f4369",
    "type": "alert_urgencies",
    "attributes": {
      "name": "High",
      "description": "Hight alert urgency",
      "position": 1,
      "created_at": "2025-07-09T09:05:21.467-07:00",
      "updated_at": "2025-07-09T09:05:21.467-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

Response

201
application/vnd.api+json

alert urgency created

The response is of type object.