List severities
curl --request GET \
--url https://api.rootly.com/v1/severities \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "severities",
"attributes": {
"name": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>",
"description": "<string>",
"severity": "critical",
"color": "<string>",
"position": 123,
"notify_emails": [
"<string>"
],
"slack_channels": [
{
"id": "<string>",
"name": "<string>"
}
],
"slack_aliases": [
{
"id": "<string>",
"name": "<string>"
}
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
success
Show child attributes
Unique ID of the severity
severities Show child attributes
The name of the severity
Date of creation
Date of last update
The slug of the severity
The description of the severity
The severity of the severity
critical, high, medium, low The hex color of the severity
Position of the severity
Emails to attach to the severity
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/severities \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "severities",
"attributes": {
"name": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>",
"description": "<string>",
"severity": "critical",
"color": "<string>",
"position": 123,
"notify_emails": [
"<string>"
],
"slack_channels": [
{
"id": "<string>",
"name": "<string>"
}
],
"slack_aliases": [
{
"id": "<string>",
"name": "<string>"
}
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}