POST api/GetTeacherTimeTableV2
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
TeacherTimeTableListV2| Name | Description | Type | Additional information |
|---|---|---|---|
| TeacherTimeTable_List | Collection of TeacherTimeTableResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"TeacherTimeTable_List": [
{
"WeekDay": "sample string 1",
"Periods": [
"sample string 1",
"sample string 2"
]
},
{
"WeekDay": "sample string 1",
"Periods": [
"sample string 1",
"sample string 2"
]
}
]
}
application/xml, text/xml
Sample:
<TeacherTimeTableListV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ADMSSCHOOLAPI.Models">
<TeacherTimeTable_List>
<TeacherTimeTableResponse>
<Periods xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>sample string 1</d4p1:string>
<d4p1:string>sample string 2</d4p1:string>
</Periods>
<WeekDay>sample string 1</WeekDay>
</TeacherTimeTableResponse>
<TeacherTimeTableResponse>
<Periods xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>sample string 1</d4p1:string>
<d4p1:string>sample string 2</d4p1:string>
</Periods>
<WeekDay>sample string 1</WeekDay>
</TeacherTimeTableResponse>
</TeacherTimeTable_List>
</TeacherTimeTableListV2>