Split PNR

This guide helps you understand the NDC API workflow for splitting PNR. Split PNR simply means to divide the PNR. You can use this service to move one or more passengers from an existing reservation to a new reservation. The split PNR uses the following endpoints:

  1. AirSplitPnr

What do you need to start?

To get started with it, you need to first create a booking and get your ticket. You will require various payload data to process other requests. So, we recommend you collect relevant information from the responses for completing the workflow.

Visit the Ticket guide to learn how to create a booking and get your ticket.

Step 1. Air Split PNR

You can use this endpoint to split your ticket. The Order ID, GDS Booking Reference Number, and Ticket Number are all required to complete the process.

Visit AirSplitPnr endpoint to know more about split PNR and the relevant parameters.

Core Query
curl --location --request POST 'http://newapi.tltid.com/AirSplitPnr' \
--header 'Content-Type: application/json' \
--header 'Authorization: 2f2b265625d76a6704b08093c652fd791626187309' \
--data-raw '{
    "AirSplitPnrRQ": {
        "Query": {
            "OrderID": "X9WZAC9Q",
            "GdsBookingReference": [
                "XXQZXS"
            ]
        },
        "DataLists": {
            "PassengerList": {
                "Passenger": [
                    {
                        "PassengerID": "ADT1",
                        "PTC": "ADT",
                        "NameTitle": "Mr",
                        "FirstName": "downey",
                        "MiddleName": "",
                        "LastName": "Robert"
                    }
                ]
            }
        }
    }
}'

What will you get in return?

As a result of this request, you will get the ticket number and type in return.

Congratulations! You have completed split PNR workflow.