v1

latestOpenAPI 3.0.2Jammed Bookings2026-07-147540124.9 KB
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

opening_timeinteger

Opening time in seconds from midnight (e.g. 32400 = 9am)

slot_lengthinteger

Slot length in seconds (e.g. 3600 = 1 hour)

timezonestring

Example response

{
  "bookings": [
    {
      "start": "2026-03-24 11:41",
      "end": "2026-03-24 12:41"
    }
  ]
}