Where are my slots?
APIs for managing booking slots and available rooms
âšī¸ You have to follow the strict order of actions to get available slots: create at least one room, create at least one table and at least one service. To verify if you already have it just use the GET method to retrieve available resources. Example: GET /rooms, GET /tables, GET /services.
âī¸ Use the base resource URL for the following examples, or see the complete collection
đ Find available slots
GET
/bookings/slots
Returns all time slots for this property from a start day and other filters see more
Headers
Content-Type
application/json
Authorization
Bearer <token>
Property
<your_property_id>
Query params
start_date
date time
The start day of search
pax
int
The number of persons
service_id
int
The id of the selected service
Response
đ Find available rooms
GET
/bookings/rooms
Retrieves available rooms and tables for a certain service see more
Headers
Content-Type
application/json
Authorization
Bearer <token>
Property
<your_property_id>
Query params
start_date
date [YYYY-MM-DD]
The start date of search
start_hour
time [HH:mm:ss]
The start time of search
pax
int
The number of persons
service_id
int
The id of the selected service
Response
Create a new user
GET
/bookings/list
Retrieves booking engine redirect links see more
Headers
Content-Type
application/json
Authorization
Bearer <token>
Property
<your_property_id>
Response
Last updated