GET api/EdsbySchedulePeriod?iSchoolId={iSchoolId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
iSchoolId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SchedulePeriod
NameDescriptionTypeAdditional information
SchoolID

string

None.

ScheduleID

string

None.

BSID

string

None.

PeriodID

string

None.

PeriodName

string

None.

stime

string

None.

etime

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SchoolID": "sample string 1",
    "ScheduleID": "sample string 2",
    "BSID": "sample string 3",
    "PeriodID": "sample string 4",
    "PeriodName": "sample string 5",
    "stime": "sample string 6",
    "etime": "sample string 7"
  },
  {
    "SchoolID": "sample string 1",
    "ScheduleID": "sample string 2",
    "BSID": "sample string 3",
    "PeriodID": "sample string 4",
    "PeriodName": "sample string 5",
    "stime": "sample string 6",
    "etime": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSchedulePeriod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TOSM.TOSMAPI.Models">
  <SchedulePeriod>
    <BSID>sample string 3</BSID>
    <PeriodID>sample string 4</PeriodID>
    <PeriodName>sample string 5</PeriodName>
    <ScheduleID>sample string 2</ScheduleID>
    <SchoolID>sample string 1</SchoolID>
    <etime>sample string 7</etime>
    <stime>sample string 6</stime>
  </SchedulePeriod>
  <SchedulePeriod>
    <BSID>sample string 3</BSID>
    <PeriodID>sample string 4</PeriodID>
    <PeriodName>sample string 5</PeriodName>
    <ScheduleID>sample string 2</ScheduleID>
    <SchoolID>sample string 1</SchoolID>
    <etime>sample string 7</etime>
    <stime>sample string 6</stime>
  </SchedulePeriod>
</ArrayOfSchedulePeriod>