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 Field | SOAP Field | Notes |
|---|---|---|
| barcode | Barcode | Ticket barcode (max 50 chars) |
| catalogId | ID_Catalog | Event identifier |
| orderId | ID_Order | Order identifier |
| seatId | ID_Seat | Seat identifier |
Request
Responses
- 204
- 400
- 401
- 403
- 422
- 500
- 503
No Content
Bad Request
Unauthorized
Forbidden
Unprocessable Content
Internal Server Error
Service Unavailable