Reservations List
Retrieve a list of reservations filtered by date type and a date range via fromDate & toDate. Max duration is 31 days. Only confirmed and cancelled reservations are returned.
The type of date to filter reservations by. - checkIn: Filter by the guest's check-in date (arrival date) - checkOut: Filter by the guest's check-out date (departure date) - bookedOn: Filter by the date the reservation was created/booked
The start date of the date range (inclusive). Cannot be more than 365 days in the past.
The end date of the date range (inclusive).
The page number of the results to fetch.
1The number of results per page.
100The api id for channel
The api key for channel
Successful response. Returns a list of reservations.
Invalid request
Unauthorized
The specified resource was not found
Unexpected error occurred
GET /reservations?dateType=checkIn&fromDate=2026-01-01&toDate=2026-01-01 HTTP/1.1
x-sm-api-id: text
x-sm-api-key: text
Accept: */*
[
{
"bookingReferenceId": "text",
"propertyUuid": "text",
"bookedOnDate": "2026-01-01",
"checkInDate": "2026-01-01",
"checkOutDate": "2026-01-01",
"currencyCode": "text",
"paymentTotal": 1,
"status": "Confirmed",
"channelCommissionAmount": 1
}
]Still have questions?
Use the Ask button at the top of the page to chat with our AI assistant — it can help you navigate the guide, understand requirements, and troubleshoot issues.
If you need more support, visit Integration Support.
Last updated
Was this helpful?