GET api/ApplicantAge

This returns the age ranges 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 Age
NameDescriptionTypeAdditional information
ID

integer

None.

Desc

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Desc": "sample string 2"
  },
  {
    "ID": 1,
    "Desc": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApplicantAgeController.Age xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FCVAPI.Controllers">
  <ApplicantAgeController.Age>
    <Desc>sample string 2</Desc>
    <ID>1</ID>
  </ApplicantAgeController.Age>
  <ApplicantAgeController.Age>
    <Desc>sample string 2</Desc>
    <ID>1</ID>
  </ApplicantAgeController.Age>
</ArrayOfApplicantAgeController.Age>