FlightSegment

FlightSegment

Contains the following parameters:

  • ID - unique ID of the flight segment, according to which the system will differ it from others. Data type - 64-bit integer.
  • ItineraryID - itinerary number to which this segment of the flight belongs. Data type - 64-bit integer.
  • OperatingCompany - code of the airline directly operating this flight. Data type - string.
  • MarketingCompany - code of the airline providing this flight. Data type - string.
  • FlightNumber - flight number code. Data type - string.
  • AircraftType - aircraft type code. Data type - string.
  • DepatureDateTime - date and time of departure in the yyyy-mm-ddthh:mm:ss format. Data type - string.
  • ArrivalDateTime - date and time of arrival in the format yyyy-mm-ddthh:mm:ss format. Data type - string.
  • FlightTime - flight time in minutes. Data type - 32-bit integer.
  • NotAirplaneSegmentInd - ground/not airplane segment ID. 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>100000000</a:RequestID>
            <a:ResponseBody>
               <SearchData/>
               <SimpleGroupedFlights>
                  <AirItineraries>
                     <AirItinerary/>
                  </AirItineraries>
                  <Prices>
                     <GroupedPrice/>
                     <GroupedPrice/>
                  </Prices>
                  <FlightSegments>
                     <FlightSegment>
                        <a:ID>0</a:ID>
                        <ItineraryID>0</ItineraryID>
                        <OperatingCompany>AY</OperatingCompany>
                        <MarketingCompany>AY</MarketingCompany>
                        <FlightNumber>603</FlightNumber>
                        <AircraftType>321</AircraftType>
                        <DepatureDateTime>2024-12-31T12:00:00</DepatureDateTime>
                        <ArrivalDateTime>2024-12-31T12:30:00</ArrivalDateTime>
                        <FlightTime>30</FlightTime>
                        <ETicket>true</ETicket>
                        <FlightDistance>0</FlightDistance>
                     </FlightSegment>
                     <FlightSegment>
                        <a:ID>1</a:ID>
                        <ItineraryID>0</ItineraryID>
                        <OperatingCompany>AY</OperatingCompany>
                        <MarketingCompany>AY</MarketingCompany>
                        <FlightNumber>601</FlightNumber>
                        <AircraftType>321</AircraftType>
                        <DepatureDateTime>2024-12-31T09:30:00</DepatureDateTime>
                        <ArrivalDateTime>2024-12-31T11:30:00</ArrivalDateTime>
                        <FlightTime>120</FlightTime>
                        <ETicket>true</ETicket>
                        <FlightDistance>0</FlightDistance>
                     </FlightSegment>
                     <FlightSegment>
                        <a:ID>2</a:ID>
                     </FlightSegment>
                  </FlightSegments>
                  <FlightPriceGroups>
                     <FlightPriceGroup/>
                     <FlightPriceGroup/>
                     <FlightPriceGroup/>
                  </FlightPriceGroups>
                  <ResultsFiltersApplied>false</ResultsFiltersApplied>
               </SimpleGroupedFlights>
            </a:ResponseBody>
         </Search_1_2Result>
      </Search_1_2Response>
   </s:Body>
</s:Envelope>