GET api/v1/aircraftstates
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of AircraftStateListItemName | Description | Type | Additional information |
---|---|---|---|
AircraftStateId | integer |
None. |
|
AircraftStateName | string |
None. |
|
IsAircraftFlyable | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "AircraftStateId": 1, "AircraftStateName": "sample string 2", "IsAircraftFlyable": true }, { "AircraftStateId": 1, "AircraftStateName": "sample string 2", "IsAircraftFlyable": true } ]
text/html
Sample:
[{"AircraftStateId":1,"AircraftStateName":"sample string 2","IsAircraftFlyable":true},{"AircraftStateId":1,"AircraftStateName":"sample string 2","IsAircraftFlyable":true}]
application/xml, text/xml
Sample:
<ArrayOfAircraftStateListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Aircraft"> <AircraftStateListItem> <AircraftStateId>1</AircraftStateId> <AircraftStateName>sample string 2</AircraftStateName> <IsAircraftFlyable>true</IsAircraftFlyable> </AircraftStateListItem> <AircraftStateListItem> <AircraftStateId>1</AircraftStateId> <AircraftStateName>sample string 2</AircraftStateName> <IsAircraftFlyable>true</IsAircraftFlyable> </AircraftStateListItem> </ArrayOfAircraftStateListItem>