GET ReferenceData/Sectors

Returns all sectors.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of sectors

Collection of Sector
NameDescriptionTypeAdditional information
Id

Defines the reference data item's Id.

integer

None.

Value

Defines the reference data item's value.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 2,
    "Value": "sample string 3"
  },
  {
    "Id": 2,
    "Value": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSector xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sif.Source.Api.Models">
  <Sector>
    <Id>2</Id>
    <Value>sample string 3</Value>
  </Sector>
  <Sector>
    <Id>2</Id>
    <Value>sample string 3</Value>
  </Sector>
</ArrayOfSector>