# Flight Passengers These endpoints are designed to manage passenger details for flights. They allow for the retrieval, updating, and deletion of passenger information associated with specific flight tickets. **Key Features** - **Passenger Management:** Add, retrieve, update, and delete passenger details for flights. - **Data Accuracy:** Ensures that passenger information is accurate and up-to-date. **Business Value** - **Operational Efficiency:** Streamlines the process of managing passenger information, reducing manual effort. - **Customer Service:** Enhances the ability to provide timely and accurate information to passengers and stakeholders. - **Compliance:** Helps maintain accurate records of passenger details for regulatory and operational purposes. **Use Cases** - **Flight Operations:** Quickly access and manage passenger details for flight management and operations. - **Customer Support:** Assist passengers with inquiries about their flight details and ticket information. - **Regulatory Compliance:** Maintain accurate and up-to-date passenger records for each flight. ## Add Passenger to Flight - [POST /api/external/flight/{flightId}/passenger](https://developer.fl3xx.com/reference/flight-passengers/postflightpassengerbyflightid.md): Adds a passenger to a specific flight using its flight ID. This operation creates a new flight ticket for the passenger and associates it with the flight. The request body must include the passenger's FL3XX User ID or externalReference. ## Get a Flight Passenger - [GET /api/external/flight/{flightId}/passenger/{ticketId}](https://developer.fl3xx.com/reference/flight-passengers/getflightpassengerbyflightidandticketid.md): Retrieves the details of a passenger associated with a specific flight ticket. ## Update a Flight Passenger - [PUT /api/external/flight/{flightId}/passenger/{ticketId}](https://developer.fl3xx.com/reference/flight-passengers/putflightpassengerbyflightidandticketid.md): Updates the details of a passenger associated with a specific flight ticket. ## Remove a Flight Passenger - [DELETE /api/external/flight/{flightId}/passenger/{ticketId}](https://developer.fl3xx.com/reference/flight-passengers/deleteflightpassengerbyflightidandticketid.md): Removes the passenger details of a specific flight ticket using the flight ID and ticket ID. ## Get Flight Passengers - [GET /api/external/flight/{flightId}/passengers](https://developer.fl3xx.com/reference/flight-passengers/getflightpassengersbyflightid.md): Fetches a list of passengers assigned to a specific flight using its flight ID.