Severities V1

Create Severities V1

Create a new severity

post/v1/severities

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

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

Changes

No recorded changes to this endpoint across all 1 revision of this API.