Retrieves a specific severity by id
curl --request GET \
--url https://api.rootly.com/v1/severities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "97ce3194-54a1-4b0c-9e73-faf3951a1705",
"type": "severities",
"attributes": {
"name": "476ek",
"slug": "476ek",
"description": "Dolores quia aut quaerat.",
"severity": "medium",
"color": "#E58A1F",
"position": 1,
"notify_emails": [],
"slack_channels": [],
"slack_aliases": [],
"created_at": "2025-07-22T16:18:48.273-07:00",
"updated_at": "2025-07-22T16:18:48.273-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
severity found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/severities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "97ce3194-54a1-4b0c-9e73-faf3951a1705",
"type": "severities",
"attributes": {
"name": "476ek",
"slug": "476ek",
"description": "Dolores quia aut quaerat.",
"severity": "medium",
"color": "#E58A1F",
"position": 1,
"notify_emails": [],
"slack_channels": [],
"slack_aliases": [],
"created_at": "2025-07-22T16:18:48.273-07:00",
"updated_at": "2025-07-22T16:18:48.273-07:00"
}
}
}