GET api/EdsbyTermInfo?iSchoolId={iSchoolId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| iSchoolId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TermInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| SchoolID | string |
None. |
|
| TermID | string |
None. |
|
| Title | string |
None. |
|
| Start | string |
None. |
|
| End | string |
None. |
|
| SchoolYear | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SchoolID": "sample string 1",
"TermID": "sample string 2",
"Title": "sample string 3",
"Start": "sample string 4",
"End": "sample string 5",
"SchoolYear": "sample string 6"
},
{
"SchoolID": "sample string 1",
"TermID": "sample string 2",
"Title": "sample string 3",
"Start": "sample string 4",
"End": "sample string 5",
"SchoolYear": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfTermInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TOSM.TOSMAPI.Models">
<TermInfo>
<End>sample string 5</End>
<SchoolID>sample string 1</SchoolID>
<SchoolYear>sample string 6</SchoolYear>
<Start>sample string 4</Start>
<TermID>sample string 2</TermID>
<Title>sample string 3</Title>
</TermInfo>
<TermInfo>
<End>sample string 5</End>
<SchoolID>sample string 1</SchoolID>
<SchoolYear>sample string 6</SchoolYear>
<Start>sample string 4</Start>
<TermID>sample string 2</TermID>
<Title>sample string 3</Title>
</TermInfo>
</ArrayOfTermInfo>