latestSwagger 2.02026-08-102194011.3 MB

602fc25ddd76

Severities V1

Update Severities V1

Update an existing severity

put/v1/severities/{id}

Path parameters

idstring required

Unique identifier of the severity

Request body

descriptionstring required

Description of the severity

namestring required

Human readable name of the severity

rankinteger

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

Example request

{
  "description": "Issues with **low impact**.",
  "name": "Minor",
  "rank": 1
}

Response

OK response.

Example response

{
  "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"
  }
}