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 a single GDS ticket. Not supported for NDC, see NDC Modify, Cancel, and Exchange 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"
}
}