GET api/ApplicantSector

This returns the industry sectors to be shown on the form and the values to be submitted

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Sector
NameDescriptionTypeAdditional information
Error

string

None.

Ref

string

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Error": "sample string 1",
    "Ref": "sample string 2",
    "Name": "sample string 3"
  },
  {
    "Error": "sample string 1",
    "Ref": "sample string 2",
    "Name": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApplicantSectorController.Sector xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FCVAPI.Controllers">
  <ApplicantSectorController.Sector>
    <Error>sample string 1</Error>
    <Name>sample string 3</Name>
    <Ref>sample string 2</Ref>
  </ApplicantSectorController.Sector>
  <ApplicantSectorController.Sector>
    <Error>sample string 1</Error>
    <Name>sample string 3</Name>
    <Ref>sample string 2</Ref>
  </ApplicantSectorController.Sector>
</ArrayOfApplicantSectorController.Sector>