Flight Information eBL Request

To view the request sample with additional annotation, go to the annotated version.

Note:  Flight Information eBL only supports uppercase request values (e.g., QF, LAX, DEN).

The following is a sample of a Flight Information eBL request.

<GWS_FlightInformationRQ TransLog="0" returnFlightServiceInfo="1">

<Flights>

<Flight airline="HP" bic="Q" date="2005/10/13" dest="EWR" number="216" orig="LAS"/>

</Flights>

</GWS_FlightInformationRQ>

 

Explanation

Code

Begins the Flight Information eBL request. Submit 1 to return Flight Service Information.

<GWS_FlightInformationRQ TransLog="0" returnFlightServiceInfo="1">

Begins the list of flights.

  <Flights>

You can request information for multiple flights by adding additional <Flight> elements.

   <Flight  

A two-character airline code. This code must be in uppercase. See Supported Airlines to view the list of supported airline codes.

      airline="HP"

BIC (Booking Indicator Code) is the same as Class of Service.

      bic="Q"

Enter the flight number.

      number="216"

Enter the date in YYYY/MM/DD format.

      date=”2005/10/13”

Enter the three-character city code for the origin. This code must be in uppercase.

      orig="LAS"

Enter the three-character city code for the destination. This code must be in uppercase.

      dest="EWR"/>

Ends the request.

  </Flights>

</GWS_FlightInformationRQ>