GDS Ticket Void API Reference
Put |
ticket/tickets/updatestatus/{ticketID} Send the ticket number in {ticketID}. Base path: Pre-production https://api.pp.travelport.com/11/air/ Production https://api.travelport.com/11/air/ |
Related Content:Air Modify, Cancel, Exchange & Refund Guide
Use the Ticket Void API to void Voiding a ticket cancels the ticket and payment and is based on rules for the market in which the ticket was issued. Generally a ticket can be voided only the same day it was issued, usually up to midnight local agency time. See the Exchange, Refund, and Void Guide. a single GDS
Global Distribution System. A GDS aggregates and distributes air, hotel, and car rental content such as schedules, fares, and upsells. In the JSON APIs, GDS content is distributed from Travelport. ticket. Not supported for NDC
New Distribution Capability, an XML standard for exchanging data that supports airlines in distributing their content directly to online travel agencies. See the NDC Guide., see Exchange, Refund, and Void Guide for NDC.


Request
Also see Authorization and Common Headers.
TicketVoid requires a PUT request with the ticket number.
There are no query parameters. Send an empty TicketQueryUpdateTicket object in the payload per below.

Object |
Description |
Required/Optional |
---|---|---|
TicketQueryUpdateTicket |
Empty object. |
Required |
Response
The TicketVoid response returns a result status.

Object |
Description |
---|---|
TicketIdResponse |
Top level object for response. Includes Result. May include SettlementAuthorizationCode. |
Result |
Returns the status of the void request. Key value pair:
|
SettlementAuthorizationCode |
Returned if provided by the carrier |
Example Request

{
"TicketQueryUpdateTicket" : {
}
}
Example Response
The example below shows a ticket void response with a status of Complete. A settlement authorization code may or may not be returned.

{
"TicketIdResponse": {
"Result": {
"status": "Complete"
},
"SettlementAuthorizationCode": "125ZBHKCZD3S3"
}
}