GET api/v1/flightcrewtypes/listitems

Gets the flight crew type list items.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of FlightCrewTypeListItem
NameDescriptionTypeAdditional information
FlightCrewTypeId

integer

None.

FlightCrewTypeName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FlightCrewTypeId": 1,
    "FlightCrewTypeName": "sample string 2"
  },
  {
    "FlightCrewTypeId": 1,
    "FlightCrewTypeName": "sample string 2"
  }
]

text/html

Sample:
[{"FlightCrewTypeId":1,"FlightCrewTypeName":"sample string 2"},{"FlightCrewTypeId":1,"FlightCrewTypeName":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfFlightCrewTypeListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Flight">
  <FlightCrewTypeListItem>
    <FlightCrewTypeId>1</FlightCrewTypeId>
    <FlightCrewTypeName>sample string 2</FlightCrewTypeName>
  </FlightCrewTypeListItem>
  <FlightCrewTypeListItem>
    <FlightCrewTypeId>1</FlightCrewTypeId>
    <FlightCrewTypeName>sample string 2</FlightCrewTypeName>
  </FlightCrewTypeListItem>
</ArrayOfFlightCrewTypeListItem>