GET api/School

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of School
NameDescriptionTypeAdditional information
SchoolId

globally unique identifier

None.

Name

string

None.

SIMSCode

string

None.

IsActive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SchoolId": "898ab060-679f-42ee-8120-c12add2a60f3",
    "Name": "sample string 2",
    "SIMSCode": "sample string 3",
    "IsActive": true
  },
  {
    "SchoolId": "898ab060-679f-42ee-8120-c12add2a60f3",
    "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>898ab060-679f-42ee-8120-c12add2a60f3</SchoolId>
  </School>
  <School>
    <IsActive>true</IsActive>
    <Name>sample string 2</Name>
    <SIMSCode>sample string 3</SIMSCode>
    <SchoolId>898ab060-679f-42ee-8120-c12add2a60f3</SchoolId>
  </School>
</ArrayOfSchool>