GET api/Airplanes

Returns a list of all airplanes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of airplanes

Collection of Airplane
NameDescriptionTypeAdditional information
Id

integer

None.

Brand

string

None.

Model

string

None.

EconomySeats

integer

None.

BusinessSeats

integer

None.

IsActive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Brand": "sample string 2",
    "Model": "sample string 3",
    "EconomySeats": 4,
    "BusinessSeats": 5,
    "IsActive": true
  },
  {
    "Id": 1,
    "Brand": "sample string 2",
    "Model": "sample string 3",
    "EconomySeats": 4,
    "BusinessSeats": 5,
    "IsActive": true
  }
]