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": "3b8d1b06-116b-4fd8-b48a-093f25cdd7e5",
"type": "alert_urgencies",
"attributes": {
"name": "High",
"description": "Hight alert urgency",
"position": 1,
"created_at": "2025-12-11T10:53:50.108-08:00",
"updated_at": "2025-12-11T10:53:50.108-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
alert_urgencies alert urgency created
Show child attributes
Unique ID of the alert urgency
alert_urgencies Show child attributes
The name of the alert urgency
The description of the alert urgency
Position of the alert urgency
Date of creation
Date of last update
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": "3b8d1b06-116b-4fd8-b48a-093f25cdd7e5",
"type": "alert_urgencies",
"attributes": {
"name": "High",
"description": "Hight alert urgency",
"position": 1,
"created_at": "2025-12-11T10:53:50.108-08:00",
"updated_at": "2025-12-11T10:53:50.108-08:00"
}
}
}