GET api/EdsbySectionEvent?iSchoolId={iSchoolId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| iSchoolId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SectionEvent| Name | Description | Type | Additional information |
|---|---|---|---|
| SchoolID | string |
None. |
|
| SectionGUID | string |
None. |
|
| DayID | string |
None. |
|
| ScheduleID | string |
None. |
|
| RoomID | string |
None. |
|
| TermID | string |
None. |
|
| PeriodID | string |
None. |
|
| TakeAttendance | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SchoolID": "sample string 1",
"SectionGUID": "sample string 2",
"DayID": "sample string 3",
"ScheduleID": "sample string 4",
"RoomID": "sample string 5",
"TermID": "sample string 6",
"PeriodID": "sample string 7",
"TakeAttendance": true
},
{
"SchoolID": "sample string 1",
"SectionGUID": "sample string 2",
"DayID": "sample string 3",
"ScheduleID": "sample string 4",
"RoomID": "sample string 5",
"TermID": "sample string 6",
"PeriodID": "sample string 7",
"TakeAttendance": true
}
]
application/xml, text/xml
Sample:
<ArrayOfSectionEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TOSM.TOSMAPI.Models">
<SectionEvent>
<DayID>sample string 3</DayID>
<PeriodID>sample string 7</PeriodID>
<RoomID>sample string 5</RoomID>
<ScheduleID>sample string 4</ScheduleID>
<SchoolID>sample string 1</SchoolID>
<SectionGUID>sample string 2</SectionGUID>
<TakeAttendance>true</TakeAttendance>
<TermID>sample string 6</TermID>
</SectionEvent>
<SectionEvent>
<DayID>sample string 3</DayID>
<PeriodID>sample string 7</PeriodID>
<RoomID>sample string 5</RoomID>
<ScheduleID>sample string 4</ScheduleID>
<SchoolID>sample string 1</SchoolID>
<SectionGUID>sample string 2</SectionGUID>
<TakeAttendance>true</TakeAttendance>
<TermID>sample string 6</TermID>
</SectionEvent>
</ArrayOfSectionEvent>