Booking Endpoints
Dashboard composite data
Returns rooms, today's bookings, blocked times, opening time, slot length, and timezone in a single call. Powers the ePOS home screen. Accepts optional from and to date parameters for a date range, or a single date parameter. Defaults to today.
get/dashboard
Query parameters
datestring date
Single date (defaults to today)
fromstring date
Start of date range
tostring date
End of date range
Headers
Authorizationstring required
Response
Dashboard data
Example response
{
"bookings": [
{
"start": "2026-03-24 11:41",
"end": "2026-03-24 12:41"
}
]
}