Skip to main content
PUT
/
v1
/
severities
/
{id}
Update
curl --request PUT \
  --url https://api.incident.io/v1/severities/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "Issues with **low impact**.",
  "name": "Minor",
  "rank": 1
}
'
{
  "severity": {
    "created_at": "2021-08-17T13:28:57.801578Z",
    "description": "Issues with **low impact**.",
    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
    "name": "Minor",
    "rank": 1,
    "updated_at": "2021-08-17T13:28:57.801578Z"
  }
}

Path Parameters

id
string
required

Unique identifier of the severity

Example:

"01FCNDV6P870EA6S7TK1DSYDG0"

Body

application/json
description
string
required

Description of the severity

Example:

"Issues with **low impact**."

name
string
required

Human readable name of the severity

Maximum string length: 50
Example:

"Minor"

rank
integer<int64>

Rank to help sort severities (lower numbers are less severe)

Example:

1

Response

200 - application/json

OK response.

severity
object
required
Example:
{
"created_at": "2021-08-17T13:28:57.801578Z",
"description": "Issues with **low impact**.",
"id": "01FCNDV6P870EA6S7TK1DSYDG0",
"name": "Minor",
"rank": 1,
"updated_at": "2021-08-17T13:28:57.801578Z"
}