POST api/GetStudentTimeTable
Request Information
URI Parameters
None.
Body Parameters
Jsonparams| Name | Description | Type | Additional information |
|---|---|---|---|
| jsonstring | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"jsonstring": "sample string 1"
}
application/xml, text/xml
Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ADMSSCHOOLAPI.Models"> <jsonstring>sample string 1</jsonstring> </Jsonparams>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StudentTimeTableList| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentTimeTable_List | Collection of StudentTimeTableModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"StudentTimeTable_List": [
{
"PeriodID": "sample string 1",
"SubjectID": "sample string 2",
"WeekDay": "sample string 3",
"TeacherID": "sample string 4",
"SubjectName": "sample string 5",
"TeacherName": "sample string 6"
},
{
"PeriodID": "sample string 1",
"SubjectID": "sample string 2",
"WeekDay": "sample string 3",
"TeacherID": "sample string 4",
"SubjectName": "sample string 5",
"TeacherName": "sample string 6"
}
]
}
application/xml, text/xml
Sample:
<StudentTimeTableList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ADMSSCHOOLAPI.Models">
<StudentTimeTable_List>
<StudentTimeTableModel>
<PeriodID>sample string 1</PeriodID>
<SubjectID>sample string 2</SubjectID>
<SubjectName>sample string 5</SubjectName>
<TeacherID>sample string 4</TeacherID>
<TeacherName>sample string 6</TeacherName>
<WeekDay>sample string 3</WeekDay>
</StudentTimeTableModel>
<StudentTimeTableModel>
<PeriodID>sample string 1</PeriodID>
<SubjectID>sample string 2</SubjectID>
<SubjectName>sample string 5</SubjectName>
<TeacherID>sample string 4</TeacherID>
<TeacherName>sample string 6</TeacherName>
<WeekDay>sample string 3</WeekDay>
</StudentTimeTableModel>
</StudentTimeTable_List>
</StudentTimeTableList>