POST api/GetTeacherTimeTable
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
TeacherTimeTableList| Name | Description | Type | Additional information |
|---|---|---|---|
| TeacherTimeTable_List | Collection of TeacherTimeTableModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"TeacherTimeTable_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",
"SectionName": "sample string 7"
},
{
"PeriodID": "sample string 1",
"SubjectID": "sample string 2",
"WeekDay": "sample string 3",
"TeacherID": "sample string 4",
"SubjectName": "sample string 5",
"TeacherName": "sample string 6",
"SectionName": "sample string 7"
}
]
}
application/xml, text/xml
Sample:
<TeacherTimeTableList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ADMSSCHOOLAPI.Models">
<TeacherTimeTable_List>
<TeacherTimeTableModel>
<PeriodID>sample string 1</PeriodID>
<SectionName>sample string 7</SectionName>
<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>
</TeacherTimeTableModel>
<TeacherTimeTableModel>
<PeriodID>sample string 1</PeriodID>
<SectionName>sample string 7</SectionName>
<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>
</TeacherTimeTableModel>
</TeacherTimeTable_List>
</TeacherTimeTableList>