GET ReferenceData/Subsectors

Returns all subsectors.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of subsectors

Collection of Subsector
NameDescriptionTypeAdditional information
Sector

Defines the sector related to the subsector

Sector

None.

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:
[
  {
    "Sector": {
      "Id": 2,
      "Value": "sample string 3"
    },
    "Id": 2,
    "Value": "sample string 3"
  },
  {
    "Sector": {
      "Id": 2,
      "Value": "sample string 3"
    },
    "Id": 2,
    "Value": "sample string 3"
  }
]

application/xml, text/xml

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