AirItinerary

Air Itinerary

Contains the following parameters:

  • ID - unique number of this air itinerary, according to which the system will distinguish it from others. Data type - 64-bit integer.
  • DepAirp - departure airport information for this segment. Data type - array.
  • DepAirp.AirportCode - airport code. Data type - string.
  • DepAirp.CityCode - city code (aggregation code). Data type - string.
  • DepAirp.UTC - airport time zone. Data type - string.
  • DepAirp.Terminal - terminal code. Data type - string.
  • ArrAirp - arrival airport information for this segment. Data type - array. The format is similar to the departure airport.
  • StopNum - number of stops on this flight segment. Data type - 32-bit integer.
  • ETicket - attribute of the possibility of ticketing an electronic ticket on this segment. Data type - bool.
Sample
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
      <Search_1_2Response xmlns="http://ws-ibe.com/Avia">
         <Search_1_2Result xmlns:a="http://ws-ibe.com/STL" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
            <a:RequestID>1000000000</a:RequestID>
            <a:ResponseBody>
               <SimpleGroupedFlights>
                  <AirItineraries>
                     <AirItinerary>
                        <a:ID>0</a:ID>
                        <DepAirp>
                           <AirportCode>CDG</AirportCode>
                           <CityCode>PAR</CityCode>
                           <UTC>1</UTC>
                           <Terminal>2F</Terminal>
                        </DepAirp>
                        <ArrAirp>
                           <AirportCode>BCN</AirportCode>
                           <CityCode>BCN</CityCode>
                           <UTC>1</UTC>
                           <Terminal>1</Terminal>
                        </ArrAirp>
                     </AirItinerary>
                     <AirItinerary>
                        <a:ID>1</a:ID>
                        <DepAirp>
                           <AirportCode>BCN</AirportCode>
                           <CityCode>BCN</CityCode>
                           <UTC>1</UTC>
                           <Terminal>1</Terminal>
                        </DepAirp>
                        <ArrAirp>
                           <AirportCode>CDG</AirportCode>
                           <CityCode>PAR</CityCode>
                           <UTC>1</UTC>
                           <Terminal>2F</Terminal>
                        </ArrAirp>
                     </AirItinerary>
                  </AirItineraries>
                  <Prices>
                     <GroupedPrice/>
                     <GroupedPrice/>
                     <GroupedPrice/>
                  </Prices>
                  <FlightSegments>
                     <FlightSegment/>
                     <FlightSegment/>
                  </FlightSegments>
                  <FlightPriceGroups>
                     <FlightPriceGroup/>
                     <FlightPriceGroup/>
                  </FlightPriceGroups>
                  <ResultsFiltersApplied>false</ResultsFiltersApplied>
               </SimpleGroupedFlights>
            </a:ResponseBody>
         </Search_1_2Result>
      </Search_1_2Response>
   </s:Body>
</s:Envelope>