GET v2/ticketCategory/{ticketCategoryID}/detail

Return detailed information of a single Ticket Category

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ticketCategoryID

integer

Required

Body Parameters

None.

Response Information

Resource Description

TicketCategoryModel
NameDescriptionTypeAdditional information
TicketCategoryID

Unique record identifier of a category

integer

None.

IsActive

Boolean indicating if a category is active or inactive

boolean

None.

Category

Name of the category

string

None.

ColorValue

Name of the category

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ticketCategoryID": 1,
  "isActive": true,
  "category": "sample string 2",
  "colorValue": "sample string 3"
}