Skip to main content

Updates ticket information (barcode) for a specific seat in an order

PUT 

/api/v1/order/tickets/update

Assigns or updates the barcode for a ticket associated with a specific seat in an order. Used when printing tickets or updating ticket information after order confirmation.

SOAP Equivalent: AWSP_TicketUpdate

Examples

Success (204)

No content returned on success.

Error 400 - Missing x-tenant header

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
"title": "Bad Request",
"status": 400,
"detail": "The x-tenant header is required"
}

Error 400 - Validation failed

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
"title": "Bad Request",
"status": 400,
"detail": "Barcode is required"
}

Error 403 - Forbidden

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.4",
"title": "Forbidden",
"status": 403,
"detail": "You do not have permission to update this ticket"
}

Error 500 - Server error

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.6.1",
"title": "Internal Server Error",
"status": 500,
"detail": "An unexpected error occurred",
"traceId": "00-abc123-def456-00"
}

SOAP to REST Field Mapping

REST FieldSOAP FieldNotes
barcodeBarcodeTicket barcode (max 50 chars)
catalogIdID_CatalogEvent identifier
orderIdID_OrderOrder identifier
seatIdID_SeatSeat identifier

Request

Responses

No Content