Ticket Void API Reference (GDS)
Put |
ticket/tickets/updatestatus/{ticketID} Send the ticket number in {ticketID}. Base path: Use this base path if you have not yet received or not migrated to the new credentials from Travelport:
Use this base path after you have migrated to the new credentials from Travelport (using .net instead of .com):
|
Related Content:Air Modify, Cancel, Exchange & Refund Guide
Use the Ticket Void API to void a single GDS ticket. Not supported for NDC, see Exchange, Refund, and Void Guide for NDC.
Request
As part of the request requirements, also see Authentication and Common Air 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"
}
}