GET api/v1/flightstates/listitems
Gets the flight air state list items.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of FlightStateListItem| Name | Description | Type | Additional information |
|---|---|---|---|
| FlightStateId | integer |
None. |
|
| FlightState | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FlightStateId": 1,
"FlightState": "sample string 2"
},
{
"FlightStateId": 1,
"FlightState": "sample string 2"
}
]
text/html
Sample:
[{"FlightStateId":1,"FlightState":"sample string 2"},{"FlightStateId":1,"FlightState":"sample string 2"}]
application/xml, text/xml
Sample:
<ArrayOfFlightStateListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Flight">
<FlightStateListItem>
<FlightState>sample string 2</FlightState>
<FlightStateId>1</FlightStateId>
</FlightStateListItem>
<FlightStateListItem>
<FlightState>sample string 2</FlightState>
<FlightStateId>1</FlightStateId>
</FlightStateListItem>
</ArrayOfFlightStateListItem>