GET residentapi/eventcategories/{categoryID}/eventsubcategories

Get all of the sub categories for a categoryID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
categoryID

integer

Required

Body Parameters

None.

Response Information

Resource Description

ListWrapperOfEventSubCategory
NameDescriptionTypeAdditional information
Total

integer

None.

Elements

Collection of EventSubCategory

None.

Response Formats

application/json, text/json

Sample:
{
  "total": 1,
  "elements": [
    {
      "subCategoryID": 1,
      "name": "sample string 2",
      "description": "sample string 3"
    },
    {
      "subCategoryID": 1,
      "name": "sample string 2",
      "description": "sample string 3"
    }
  ]
}