# Get Tickets Get all tickets for a booking. Endpoint: GET /v1/bookings/{bookingId}/tickets Version: 0.1.0 Security: OAuth2 ## Path parameters: - `bookingId` (string, required) The unique identifier of the booking. ## Response 200 fields (application/json): - `items` (array) - `items.id` (string, required) The unique identifier of the ticket. - `items.urls` (array, required) The URLs associated with the ticket. - `items.urls.type` (string, required) The type of the URL. Enum: "PDF" - `items.urls.url` (string, required) URL to the ticket. - `items.status` (string, required) The status of the ticket. Enum: "ACTIVE", "VOIDED", "CHECKED_IN", "UNKNOWN" - `items.items` (array, required) The items associated with the ticket, e.g. variants or addons. - `items.items.type_id` (string, required) The unique identifier of the item type. - `items.items.item_type` (string, required) The type of item. Enum: "VARIANT", "ADDON", "UNKNOWN" - `items.items.quantity` (integer, required) The quantity of the item. - `items.check_in` (object) - `items.check_in.check_in_time` (string, required) Timestamp of when the ticket was checked in. - `items.check_in.checked_in_by` (string, required) The ID of the person who checked in the ticket. - `items.check_in.method` (string, required) The method used to check in the ticket. Enum: "MANUAL", "QR_CODE_SCAN", "UNKNOWN" ## Response 400 fields (application/json): - `message` (string, required) - `code` (string, required) ## Response default fields (application/json): - `message` (string, required) - `code` (string, required)