Ticket Void API Reference (GDS)
|
Put |
ticket/tickets/updatestatus/{ticketID} Send the ticket number in {ticketID}. Base path: Pre-production https://api.pp.travelport.net/11/air/ Production https://api.travelport.net/11/air/ Travelport has updated all JSON API authentication and authorization endpoints. Previous endpoints are scheduled for deprecation 5 Dec 2025 for pre-production and 30 Jan 2026 for production. You must migrate to the endpoints above before those dates or transactions in those environments will fail. See Endpoint Migration for details.
|
Related Content: Exchange, Refund, and Void 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"
}
}