AirTicketVoid

AirTicketVoid is a service that helps in voiding airline tickets, which involves Voiding ticket numbers or cancelling itineraries. By using AirTicketVoid, can request to cancel their flights and potentially receive a full refund, less any cancellation fees that may apply.

It is important to note that the availability of refunds and the amount refunded may depend on the airline’s policies and the type of ticket purchased.

Schema

  • Name: Provide the name for the request. This is a String value.

  • ReferenceVersion: Provide the version number. This is a Numeric value.


  • Travel Agency Sender:

    • Name: Provide the name for the request. This is a String value.

    • IATA Number: Provide the IATA number for the request. This is a String value.

    • Agency ID: Provide the agency ID. This is a String value.

    • Contacts: This is an Array.

      • EmailContact: Provide the email contact for the request. This is a String value.

  • OrderID: This is the unique identifier that is typically provided by the airline at the time of booking. This is the required field, and the value will be String.

  • GdsBookingReference: This is the code that is used by GDS to identify the booking. The GDS booking references are typically provided by the airlines at the time of booking. This is the required field, and the value will be the String.

    • TicketNumber: The ticket number is a unique identifier assigned by the airline to each passenger, and it typically consists of a series of numbers. When using the AirTicketVoid service, must provide the correct ticket number associated with their booking to ensure that the correct ticket is voided or cancelled This is a required field.The value will be String.

    • NeedToCancelBooking: This parameter is used to cancel the itineraries, its default value is N. Valid values are Y and N. The value will be String.


Request URL

curl --location --request POST 'https://newapi.tltid.com/AirTicketVoid' \
--header 'Authorization: <YOUR_ACCESS_TOKEN>' \

Request Body Sample

{
    "AirTicketVoidRQ": {
        "Document": {
            "Name": "Skyroute B2B Portal",
            "ReferenceVersion": "1.0"
        },
        "Party": {
            "Sender": {
                "TravelAgencySender": {
                    "Name": "Skyroute B2B",
                    "IATA_Number": "",
                    "AgencyID": "",
                    "Contacts": {
                        "Contact": [
                            {
                                "EmailContact": "pst@claritytts.com"
                            }
                        ]
                    }
                }
            }
        },
        "Query": {
            "OrderID": "U00BXIMP",
            "GdsBookingReference": [
                "NVCDTQ"
            ],
            "TicketNumber": [
                "0141609819723"
            ],
            "NeedToCancelBooking": "N"
        }
    }
}

Response Sample

{
    "AirTicketVoidRS": {
        "Document": {
            "Name": "API GATEWAY",
            "ReferenceVersion": "1.2"
        },
        "Party": {
            "Sender": {
                "TravelAgencySender": {
                    "Name": "Lucky Travels",
                    "IATA_Number": "",
                    "AgencyID": "",
                    "Contacts": {
                        "Contact": [
                            {
                                "EmailContact": "pst@claritytts.com"
                            }
                        ]
                    }
                }
            }
        },
        "ShoppingResponseId": "1678691956433832527",
        "Success": {},
        "Result": {
            "Status": "SUCCESS",
            "ErrorMessage": "",
            "TicketDetails": [
                {
                    "DocumentNumber": "0141609819723",
                    "Status": "SUCCESS",
                    "Msg": ""
                }
            ],
            "TktRequestId": "242JPDYD",
            "ShoppingResponseId": "1678691956433832527"
        }
    }
}

Try it out!