GET residentapi/eventcategories/{categoryID}/eventsubcategories
Get all of the sub categories for a categoryID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| categoryID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ListWrapperOfEventSubCategory| Name | Description | Type | Additional 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"
}
]
}