Creates a new severity from provided data
curl --request POST \
--url https://api.rootly.com/v1/severities \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "severities",
"attributes": {
"name": "<string>",
"description": "<string>",
"severity": "critical",
"color": "<string>",
"position": 123,
"notify_emails": [
"<string>"
],
"slack_channels": [
{
"id": "<string>",
"name": "<string>"
}
],
"slack_aliases": [
{
"id": "<string>",
"name": "<string>"
}
]
}
}
}
'{
"data": {
"id": "de1cffcd-5ccc-4272-a295-923dcb4dd95f",
"type": "severities",
"attributes": {
"name": "P0",
"slug": "p0",
"description": "High Priority",
"severity": "medium",
"color": "#E58A1F",
"position": 1,
"notify_emails": [
"[email protected]",
"[email protected]"
],
"slack_channels": [
{
"id": "C03MKDSEJE8",
"name": "elastisearch"
}
],
"slack_aliases": [
{
"id": "S03F7QUV7F1",
"name": "leadership"
}
],
"created_at": "2025-12-15T13:49:07.870-08:00",
"updated_at": "2025-12-15T13:49:07.870-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
severities Show child attributes
The name 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
severity created
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 POST \
--url https://api.rootly.com/v1/severities \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "severities",
"attributes": {
"name": "<string>",
"description": "<string>",
"severity": "critical",
"color": "<string>",
"position": 123,
"notify_emails": [
"<string>"
],
"slack_channels": [
{
"id": "<string>",
"name": "<string>"
}
],
"slack_aliases": [
{
"id": "<string>",
"name": "<string>"
}
]
}
}
}
'{
"data": {
"id": "de1cffcd-5ccc-4272-a295-923dcb4dd95f",
"type": "severities",
"attributes": {
"name": "P0",
"slug": "p0",
"description": "High Priority",
"severity": "medium",
"color": "#E58A1F",
"position": 1,
"notify_emails": [
"[email protected]",
"[email protected]"
],
"slack_channels": [
{
"id": "C03MKDSEJE8",
"name": "elastisearch"
}
],
"slack_aliases": [
{
"id": "S03F7QUV7F1",
"name": "leadership"
}
],
"created_at": "2025-12-15T13:49:07.870-08:00",
"updated_at": "2025-12-15T13:49:07.870-08:00"
}
}
}