π§ Passengers
Pax and ticketing overview
Whenever a flight is generated, as default, FL3XX system will create a number of tickets equal to the number of seat configurations for that aircraft. The number of seats available can be also changed during the creation of the flight.
If a passenger needs to board that specific flight, it needs to be assigned to one of the available tickets.
Each ticket belongs to a flight and can be assigned and transferred between different passengers
Passenger Details
Read passengers from specific flights.
GET /api/external/flight/{flightId}/passengers
GET /api/external/flight/{flightId/pax_details
"isMain" is true for the lead passenger.
Add Passenger to Flight
FL3XX can only accurately assign passengers if identified by an external or internal reference.
POST api/external/flight/{flightId}/passenger
{
"\_paxExternalReference": "pax03122019_3",
"paxUserId": 23910,
"paxType": "MALE",
"isMain": true
}
Passengers have to be managed by an external system
"_paxExternalReference": "pax03122019_3",
- externalreference
Or by/in FL3XX system
"paxUserId": 23910,
- FL3XX internal ids assigned by FL3XX
You can also simply add a passenger via their paxUserId
{
"isMain": true,
"paxUserId": 106548
}
Updated about 2 months ago