GET api/Tutorial/GetList/{lecturerId}/{courseId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| lecturerId | integer |
Required |
|
| courseId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Tutorial| Name | Description | Type | Additional information |
|---|---|---|---|
| TutorialId | integer |
None. |
|
| Type | string |
None. |
|
| LecturerId | integer |
None. |
|
| CourseId | integer |
None. |
|
| DisplayName | string |
None. |
|
| PhysicalName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"tutorialId": 1,
"type": "sample string 2",
"lecturerId": 3,
"courseId": 4,
"displayName": "sample string 5",
"physicalName": "sample string 6"
},
{
"tutorialId": 1,
"type": "sample string 2",
"lecturerId": 3,
"courseId": 4,
"displayName": "sample string 5",
"physicalName": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfTutorial xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTO">
<Tutorial>
<CourseId>4</CourseId>
<DisplayName>sample string 5</DisplayName>
<LecturerId>3</LecturerId>
<PhysicalName>sample string 6</PhysicalName>
<TutorialId>1</TutorialId>
<Type>sample string 2</Type>
</Tutorial>
<Tutorial>
<CourseId>4</CourseId>
<DisplayName>sample string 5</DisplayName>
<LecturerId>3</LecturerId>
<PhysicalName>sample string 6</PhysicalName>
<TutorialId>1</TutorialId>
<Type>sample string 2</Type>
</Tutorial>
</ArrayOfTutorial>