latestOpenAPI 3.1.12026-08-108026304.2 KB

7b222e8ec91c

Issued tickets

Void an issued ticket

Mark an issued ticket as voided. This action is irreversible. This will only mark the ticket as voided (no longer valid) and will not cancel an entire order or issue a refund. Learn more about voiding an issued ticket. You can also void an issued ticket to a hold, which will create a hold from the issued ticket and not put the allocation back on sale.

post/v1/issued_tickets/{issued_ticket_id}/void

Path parameters

issued_ticket_idstring required

The unique identifier for the issued ticket

Response

Successfully voided ticket

idstring

ID of the voided ticket

hold_idstring nullable

ID of the associated hold, if applicable, 'null' if not

objectstring
voidedstring

Voiding operation successful or not

Example response

{
  "id": "it_123",
  "hold_id": "ho_345",
  "object": "issued_ticket",
  "voided": "true"
}