Endpoint
/api/v2/tenants/{tenantId}/incidents/categories/{uniqueId}
Path Parameters
tenantId
string

uniqueId
string

name
string

(Optional) Category name.

parentCategory
object

Parent category details. This field is required while assigning a child category to a parent category.

parentCategory.name
parentCategory.uniqueId
{
  "name": "Version Updates",
  "parentCategory": {
    "name": "Software",
    "uniqueId": "SCAT-8e8ee079-2b38-43c2-b59c-1a0c19e0fdb6"
  }
}

Responses

OK

createdBy
object

createdBy.email
createdBy.firstName
createdBy.id
createdBy.lastName
createdBy.loginName
createdBy.phoneNumber
createdDate
string

name
string

parentCategory
object

parentCategory.name
parentCategory.uniqueId
uniqueId
string

updatedBy
object

updatedBy.email
updatedBy.firstName
updatedBy.id
updatedBy.lastName
updatedBy.loginName
updatedBy.phoneNumber
updatedDate
string

{
  "createdBy": {
    "email": "john.smith@myorganization.com",
    "firstName": "John",
    "id": "USR0000000047",
    "lastName": "Smith",
    "loginName": "John_Smith",
    "phoneNumber": ""
  },
  "createdDate": "2017-12-06T13:25:22+0000",
  "name": "Version Updates",
  "parentCategory": {
    "name": "Software",
    "uniqueId": "SCAT-8e8ee079-2b38-43c2-b59c-1a0c19e0fdb6"
  },
  "uniqueId": "SCAT-26ee9fcc-2d41-4e2b-a29e-8f758e09e51d",
  "updatedBy": {
    "email": "john.smith@myorganization.com",
    "firstName": "John",
    "id": "USR0000000047",
    "lastName": "Smith",
    "loginName": "John_Smith"
  },
  "updatedDate": "2017-12-06T13:26:04+0000"
}