Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/vnd.api+json
Response
alert urgency created
Creates a new alert urgency from provided data
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": "3ec5fe28-d7cb-4231-a9cd-3f6ec1c18e2d",
    "type": "alert_urgencies",
    "attributes": {
      "name": "High",
      "description": "Hight alert urgency",
      "position": 1,
      "created_at": "2025-10-30T19:47:26.586-07:00",
      "updated_at": "2025-10-30T19:47:26.586-07:00"
    }
  }
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
alert urgency created
Show child attributes
Was this page helpful?
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": "3ec5fe28-d7cb-4231-a9cd-3f6ec1c18e2d",
    "type": "alert_urgencies",
    "attributes": {
      "name": "High",
      "description": "Hight alert urgency",
      "position": 1,
      "created_at": "2025-10-30T19:47:26.586-07:00",
      "updated_at": "2025-10-30T19:47:26.586-07:00"
    }
  }
}