A collection of endpoints to use at the end of the booking flow to retrieve reserved tickets and vouchers.
Returns an array of available tickets/vouchers for the specified activity in the order. Use the GET /orders/{orderUuid}/activities/{activityUuid}/tickets/{ticketId}
endpoint to download each ticket.
Tickets for activity in order
Not found: order or activity do not exist or no tickets are available
Error
[- {
- "id": "AW50cmFuY2UtYXV2aW9ndWlkZXr3NzkwNzQ4MQ==",
- "price_feature_code": "entrance-audioguide",
- "price_feature": "Entrance + audio guide",
- "date": "2021-06-15T16:00:00+0000"
}
]
Returns a PDF for a single reserved activity product in the specified order.
PDF ticket for product in order
Not found: order or activity do not exist or ticket is not available
Internal server error: unable to create PDF
Error
{- "code": "9442",
- "message": "Ticket not available"
}
Returns a single PDF with all available tickets/vouchers for the specified activity in the order.
PDF voucher for activity in order
Not found: order or activity do not exist or at least one voucher is not available
Internal server error: unable to create PDF
Error
{- "code": "9442",
- "message": "Voucher not available"
}
Returns a single PDF with all available tickets/vouchers for the specified order item.
PDF for order item
Not found: order or order item do not exist or at least one voucher is not available
Internal server error: unable to create PDF
Error
{- "code": "9442",
- "message": "Voucher not available"
}
Returns a single PDF with all externally sourced tickets/vouchers for the specified order item.
External PDF for order item
Not found: order or order item do not exist
Conflict: order item has no external vouchers or unable to get external voucher
Error
{- "code": "9442",
- "message": "Voucher not available"
}