> ## Documentation Index
> Fetch the complete documentation index at: https://developer.tripedge.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get booking voucher



## OpenAPI

````yaml get /book/voucher/{bookingId}
openapi: 3.0.0
info:
  title: Hotel Booking API
  version: 1.0.0
servers:
  - url: /api
    description: API server
security:
  - ApiKeyAuth: []
paths:
  /book/voucher/{bookingId}:
    get:
      summary: Get booking voucher
      operationId: getBookingVoucher
      parameters:
        - in: path
          name: bookingId
          schema:
            type: string
          required: true
      responses:
        '302':
          description: Redirect to voucher URL
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key for authentication

````