Retrieves a specific alert urgency by id
curl --request GET \
--url https://api.rootly.com/v1/alert_urgencies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8aa0d3f4-23a2-43aa-94d6-9c6503739e8e",
"type": "alert_urgencies",
"attributes": {
"name": "gnovv",
"description": "Molestiae occaecati quas iusto.",
"position": 1,
"created_at": "2025-07-25T14:30:13.455-07:00",
"updated_at": "2025-07-25T14:30:13.461-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
alert urgency found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/alert_urgencies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8aa0d3f4-23a2-43aa-94d6-9c6503739e8e",
"type": "alert_urgencies",
"attributes": {
"name": "gnovv",
"description": "Molestiae occaecati quas iusto.",
"position": 1,
"created_at": "2025-07-25T14:30:13.455-07:00",
"updated_at": "2025-07-25T14:30:13.461-07:00"
}
}
}