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