GET shows/{showId}/categories/{categoryId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| showId | integer |
Required |
|
| categoryId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CategoryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
Required |
|
| IsParent | boolean |
None. |
|
| ChildrenCategories | Collection of CategoryDto |
None. |
|
| ParentCategoryId | integer |
None. |
|
| ParentCategory | CategoryDto |
None. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2",
"IsParent": true,
"ChildrenCategories": [],
"ParentCategoryId": 1
}