FLIGHTS

The objective of this document is to describe the flight search flow.

Specific Information

  • The maximum flight search timeline is 360 days.
  • A maximum of 9 passengers, including adults, children, and infants, can be sent.
  • The search must include at least one adult.

Api Services

SectionDescription
SearchHandles the search for available flights.
UpsellingService that expands the options available to the user by enabling upgrades or alternatives to an initial selection.
Baggage AvailabilityReturns the available baggage options for a selected flight, including type (checked or carry-on), weight limit, quantity, and pricing.

Flow standar

sequenceDiagram

		Actor Partner
    participant Availability as /Availability
    participant BookingFlow

    Partner->>Availability: site + from + to + departure_date + adults
    Availability-->>Partner: Availability info
    Partner->>BookingFlow: choice_id
 
 

Flow extra

Flow with upselling
sequenceDiagram
    Actor Partner
    participant Availability as /Availability
    participant Upselling as /Upselling
    participant BookingFlow

    Partner->>Availability: site + from + to + departure_date + adults
    Availability-->>Partner: Availability info
    Partner ->> Upselling: choice_id + site + language
    Upselling -->> Partner: Availability upsell
    Partner->>BookingFlow: choice_id
 
 
Flow with baggage
sequenceDiagram
    Actor Partner
    participant Availability as /Availability
    participant BookingFlow
    participant Baggage as /Baggage

    Partner->>Availability: site + from + to + departure_date + adults
    Availability-->>Partner: Availability info
    Partner->>BookingFlow: choice_id
    BookingFlow -->> Partner: status + platform_id
    Partner ->> Baggage: platform_id
    Baggage -->> Partner: Baggage availability info
    Partner ->> BookingFlow: choice_id
 

Did this page help you?