GET api/EdsbyStudentSectionEnrollment?iSchoolId={iSchoolId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| iSchoolId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StudentSectionEnrollment| Name | Description | Type | Additional information |
|---|---|---|---|
| SchoolID | string |
None. |
|
| SectionGUID | string |
None. |
|
| StudentGUID | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SchoolID": "sample string 1",
"SectionGUID": "sample string 2",
"StudentGUID": "sample string 3"
},
{
"SchoolID": "sample string 1",
"SectionGUID": "sample string 2",
"StudentGUID": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfStudentSectionEnrollment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TOSM.TOSMAPI.Models">
<StudentSectionEnrollment>
<SchoolID>sample string 1</SchoolID>
<SectionGUID>sample string 2</SectionGUID>
<StudentGUID>sample string 3</StudentGUID>
</StudentSectionEnrollment>
<StudentSectionEnrollment>
<SchoolID>sample string 1</SchoolID>
<SectionGUID>sample string 2</SectionGUID>
<StudentGUID>sample string 3</StudentGUID>
</StudentSectionEnrollment>
</ArrayOfStudentSectionEnrollment>