GET Course/GetCourseComments?courseCode={courseCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| courseCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CourseCommentsResDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ReviewedBy | string |
None. |
|
| Comments | string |
None. |
|
| CreateTime | string |
None. |
|
| Type | CommentsTypeEnum |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"ReviewedBy": "sample string 2",
"Comments": "sample string 3",
"CreateTime": "sample string 4",
"Type": "AUTO"
},
{
"Id": 1,
"ReviewedBy": "sample string 2",
"Comments": "sample string 3",
"CreateTime": "sample string 4",
"Type": "AUTO"
}
]
application/xml, text/xml
Sample:
<ArrayOfCourseCommentsResDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Zs.Ylx.Resources.Entity.BackgroundDTO">
<CourseCommentsResDTO>
<Comments>sample string 3</Comments>
<CreateTime>sample string 4</CreateTime>
<Id>1</Id>
<ReviewedBy>sample string 2</ReviewedBy>
<Type>AUTO</Type>
</CourseCommentsResDTO>
<CourseCommentsResDTO>
<Comments>sample string 3</Comments>
<CreateTime>sample string 4</CreateTime>
<Id>1</Id>
<ReviewedBy>sample string 2</ReviewedBy>
<Type>AUTO</Type>
</CourseCommentsResDTO>
</ArrayOfCourseCommentsResDTO>