# Get vouchers Retrieves the vouchers for a specific booking. > Please note that the download links provided require authorization and should not be sent directly to the end customer. You must download the vouchers and distribute them yourself. Endpoint: GET /v2/bookings/{bookingUuid}/vouchers Version: 2.1 Security: Authorization ## Path parameters: - `bookingUuid` (string, required) Booking UUID ## Query parameters: - `page` (string) page - Page number for results. By default, the api response will only return back the first 15 vouchers on first page. - `per_page` (string) per_page - How many results per page - if not provided default value will be 15 ## Response 200 fields (application/json): - `data` (array) - `data.uuid` (string) UUID of voucher - `data.generatedAt` (string) voucher generated date/time - `data.downloadedAt` (string) voucher downloaded date/time via API - `data.links` (array) voucher download links - partner is required to download the vouchers to their system - `data.visualId` (string,null) visual id of voucher if applicable ## Response 401 fields (application/json): - `message` (string) A human-readable error message. - `code` (string) An internal error code. - `http_code` (integer) Http Status Code ## Response 404 fields (application/json): - `message` (string) A human-readable error message. - `code` (string) An internal error code. - `http_code` (integer) Http Status Code ## Response 405 fields (application/json): - `message` (string) A human-readable error message. - `code` (string) An internal error code. - `http_code` (integer) Http Status Code