Introduction

The FlightDataRequestService contains operations to request flight related data from the service provider, typically an airport or an airport group. All operations follow the same pattern:

GetXXX( FlightFilter ): GetXXXResponse

XXX varies by operation. The FlightFilter is the same for all operations. See "Data definitions" for documentation of FlightFilter and the different return types.

Operations

GetFlightDataInbound

Signature

GetFlightDataInbound( flightFilter: FlightFilter ) : GetFlightDataInboundResponse

Description

Returns data about the set of inbound flights that fit the FlightFilter. See the data definitions for documentation of parameters and return values.

GetFlightDataOutbound

Signature

GetFlightDataOutbound( flightFilter: FlightFilter  ) : GetFlightDataOutboundResponse

Description

Returns data about the set of outbound flights that fit the FlightFilter. See the data definitions for documentation of parameters and return values.

GetFlightLegData

Signature

GetFlightLegData( flightFilter: FlightFilter  ) : GetFlightLegDataResponse

Description

Returns data about the set of flight legs that fit the FlightFilter. See the data definitions for documentation of parameters and return values.

GetTurnaroundData

Signature

GetTurnaroundData( flightFilter: FlightFilter  ) : GetTurnaroundDataResponse

Description

Returns data about the set of turnarounds that fit the FlightFilter. See the data definitions for documentation of parameters and return values.

GetAlerts

Signature

GetAlerts( flightFilter: FlightFilter ) : GetAlertsResponse

Description

Returns data about the set of alerts that fit the FlightFilter. See the data definitions for documentation of parameters and return values.

  • No labels