GET api/Sector
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Sector| Name | Description | Type | Additional information |
|---|---|---|---|
| SectorId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| UsedByCourse | boolean |
None. |
|
| UsedByProgram | boolean |
None. |
|
| SchoolId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SectorId": "75f1c713-2a65-47cd-abd4-d3d4ebfe9f6a",
"Name": "sample string 2",
"Description": "sample string 3",
"UsedByCourse": true,
"UsedByProgram": true,
"SchoolId": "2961a4fe-7dc1-43cf-a1f3-53c89718aacb"
},
{
"SectorId": "75f1c713-2a65-47cd-abd4-d3d4ebfe9f6a",
"Name": "sample string 2",
"Description": "sample string 3",
"UsedByCourse": true,
"UsedByProgram": true,
"SchoolId": "2961a4fe-7dc1-43cf-a1f3-53c89718aacb"
}
]
application/xml, text/xml
Sample:
<ArrayOfSector xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IDMS.REST.Models">
<Sector>
<Description>sample string 3</Description>
<Name>sample string 2</Name>
<SchoolId>2961a4fe-7dc1-43cf-a1f3-53c89718aacb</SchoolId>
<SectorId>75f1c713-2a65-47cd-abd4-d3d4ebfe9f6a</SectorId>
<UsedByCourse>true</UsedByCourse>
<UsedByProgram>true</UsedByProgram>
</Sector>
<Sector>
<Description>sample string 3</Description>
<Name>sample string 2</Name>
<SchoolId>2961a4fe-7dc1-43cf-a1f3-53c89718aacb</SchoolId>
<SectorId>75f1c713-2a65-47cd-abd4-d3d4ebfe9f6a</SectorId>
<UsedByCourse>true</UsedByCourse>
<UsedByProgram>true</UsedByProgram>
</Sector>
</ArrayOfSector>