π Flight Planning & Quote Management
Learn how to use the FL3XX API to manage flight aspects before they become confirmed bookings - create quotes, add legs, and manage passengers programmatically
Create a Quote
Add Flight Legs
Retrieve Leg & Flight IDs
Create/Retrieve Users
Attach Passengers
The FL3XX platform enables partners to manage aspects of a flight before it becomes a confirmed booking. This flexibility empowers OTAs, charter brokers, and enterprise software platforms to shape a premium flight experience in advance β defining legs, customizing passenger lists, and enriching trip data β all before any commitment.
π‘ Business Context
Example Flight Planning API Workflow
Create a Quote
Foundation draft object for your booking
This quote is the foundation of your booking. It's a draft object that holds aircraft, customer, workflow, and leg data.
Send POST Request
Send a POST request to the `/api/external/quote` endpoint with the required payload.
Note the Booking ID
Take note of the `bookingid` in the response because you'll need it to execute the next steps.
/api/external/quoteRequest Example
The request can be as simple as:
{
"aircraft": "registrationNumber",
"customer": {
"firstName": "Name",
"lastName": "Surname",
"account": {
"name": "NewAccount"
}
},
"workflow": "PRIVATE"
}Add Flight Legs
Define routes and itinerary details
Retrieve Leg & Flight IDs
Get identifiers for further operations
Create/Retrieve Users
Manage passenger user accounts
Attach Passengers to Flights
Assign passengers to specific flights
Additional Use Cases
Once you have the basic workflow set up, you can perform additional operations to manage your quotes and flights:
Update a Leg
Modify an existing leg using PUT `/api/external/leg/{legId}`.
Remove Passenger
Remove a passenger from a flight using DELETE `/api/external/flight/{flightId}/passenger/{passengerId}`.
Quote Details
Get full details of a quote using GET `/api/external/quote/{quoteId}`.
Conclusion
Planning a flight in FL3XX doesn't require a commitment. You can draft quotes with unlimited detail, simulate full itineraries with crew & passengers, and enable pre-sales operations with live pricing and route feasibility.