GET api/School
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of School| Name | Description | Type | Additional information |
|---|---|---|---|
| SchoolId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| SIMSCode | string |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SchoolId": "8a00bab5-df27-49d5-af2f-22de16817fc0",
"Name": "sample string 2",
"SIMSCode": "sample string 3",
"IsActive": true
},
{
"SchoolId": "8a00bab5-df27-49d5-af2f-22de16817fc0",
"Name": "sample string 2",
"SIMSCode": "sample string 3",
"IsActive": true
}
]
application/xml, text/xml
Sample:
<ArrayOfSchool xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IDMS.REST.Models">
<School>
<IsActive>true</IsActive>
<Name>sample string 2</Name>
<SIMSCode>sample string 3</SIMSCode>
<SchoolId>8a00bab5-df27-49d5-af2f-22de16817fc0</SchoolId>
</School>
<School>
<IsActive>true</IsActive>
<Name>sample string 2</Name>
<SIMSCode>sample string 3</SIMSCode>
<SchoolId>8a00bab5-df27-49d5-af2f-22de16817fc0</SchoolId>
</School>
</ArrayOfSchool>