Update a specific alert urgency by id
curl --request PUT \
--url https://api.rootly.com/v1/alert_urgencies/{id} \
--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": "6f357e89-65e0-49c3-9c2b-a00e658053ec",
"type": "alert_urgencies",
"attributes": {
"name": "High (Updated)",
"description": "Ab eos quos vero.",
"position": 2,
"created_at": "2025-12-10T16:19:54.340-08:00",
"updated_at": "2025-12-10T16:19:58.188-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
alert_urgencies alert urgency updated
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 PUT \
--url https://api.rootly.com/v1/alert_urgencies/{id} \
--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": "6f357e89-65e0-49c3-9c2b-a00e658053ec",
"type": "alert_urgencies",
"attributes": {
"name": "High (Updated)",
"description": "Ab eos quos vero.",
"position": 2,
"created_at": "2025-12-10T16:19:54.340-08:00",
"updated_at": "2025-12-10T16:19:58.188-08:00"
}
}
}