GET api/CourseCategories/{id}
Get Course Category by Id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id (key) of Course Category |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Course Category object by id
CourseCategoryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| CourseCategoryId |
Id (key) of Course Category |
integer |
Required |
| Category |
Course Category |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CourseCategoryId": 1,
"Category": "sample string 2"
}