List bookings
const url = 'https://integrations.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/channel-manager/property/e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18/booking/list?startDate=2026-02-01T10%3A30%3A00&endDate=2026-02-02T10%3A30%3A00';const options = { method: 'GET', headers: {'Wink-Version': '2.0', Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://integrations.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/channel-manager/property/e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18/booking/list?startDate=2026-02-01T10%3A30%3A00&endDate=2026-02-02T10%3A30%3A00' \ --header 'Authorization: Bearer <token>' \ --header 'Wink-Version: 2.0'Returns all bookings created for the given property between startDate and endDate; when endDate is omitted it defaults to startDate plus one day.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Rate provider (channel-manager account) identifier (UUID)
Example
d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69Property identifier (UUID)
Example
e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18Query Parameters
Section titled “Query Parameters ”Start timestamp for booking creation date filter (inclusive); if endDate is omitted, it defaults to startDate + 1 day
Example
2026-02-01T10:30:00End timestamp for booking creation date filter (inclusive; optional; defaults to startDate + 1 day)
Example
2026-02-02T10:30:00Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”All bookings for the given property in the requested creation date range
A single booking for a property: guest details, payment status, the net sales total, and one room-stay entry per booked room
object
Booking ID
Property ID
First name of primary guest
Last name of primary guest
Email address of primary guest
Net sales total in supplier currency — the amount the hotel receives for the entire booking (all rooms)
Supplier currency code
User-friendly booking confirmation code
Timestamp when booking was created
Whether the booking is cancelled
Timestamp when booking was cancelled (null if not cancelled)
Payment method type (e.g. Card, Direct Debit)
Payment wallet provider if applicable (e.g. Google Pay, Apple Pay)
Booking lifecycle status. INITIALIZED: awaiting payment; TEST_PAYMENT_SUCCEEDED: test booking; PAYMENT_SUCCEEDED: payment confirmed; PAYMENT_FAILED: payment declined; FAILED: system failure post-payment; CANCELLED: cancelled by any party; PARTIALLY_REFUNDED: partial refund issued; FULLY_REFUNDED: full refund issued
Sales channel name (bookable inventory source)
Sales channel ID
Per-room stay detail — one entry per physical room booked
A single physical room within a booking, including its rate, occupancy, stay dates, and per-room net sales amount
object
Master Rate ID
Master Rate name
Guest room name
Rate plan name
Number of adults in this room
Number of children in this room
Total number of guests in this room (adults and children)
Room check-in date (arrival)
Room check-out date (departure)
Net sales amount for this room in supplier currency (the booking’s net sales total divided across its rooms)
Example
[ { "bookingIdentifier": "f4d1c8e5-2b9a-4f3d-9e7c-1b6a5d3f8c92", "propertyIdentifier": "e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18", "firstName": "Alexandra", "lastName": "Beaumont", "totalAmount": "450.00", "currencyCode": "THB", "bookingCode": "WNK4ZQ7P", "createdDate": "2026-02-01T10:30:00", "cancelled": false, "paymentMethodType": "Card", "paymentMethodStatus": "SUCCEEDED", "salesChannelName": "Wink Travel Agents", "salesChannelIdentifier": "7a0c5d9e-2f6b-4c1a-8e4d-3b9f1a0c6d52", "roomStays": [ { "roomRateIdentifier": "5e8a3b7c-0d4f-4a2b-8c1d-9e6f2a0b4c73", "name": "Superior Deluxe - BAR", "guestRoomName": "Superior Deluxe", "ratePlanName": "BAR", "adults": 2, "children": 1, "guests": 3, "startDate": "2026-02-15", "endDate": "2026-02-17", "amount": "450.00" } ] }]Bad Request — missing or invalid request parameter or body
object
object
Example
Unauthorized — authentication is required or the session has expired
object
object
Example
Forbidden — authenticated but lacking the required permission or scope
object
object
Example
Not Found — the requested resource does not exist
object
object
Example
Method Not Allowed — the HTTP verb is not supported on this endpoint
object
object
Example
Unsupported Media Type — use application/json
object
object
Example
Internal Server Error — an unexpected failure occurred on the server
object
object
Example
Service Unavailable — a downstream dependency is unreachable