Bookings
Get information about booking busy times
Returns booking occupancy data for a specified date and time period. The action method provides data on the busiest times of bookings in a period. The period can change depending on the parameters set up. The chart contains time intervals on the X axis and Percentage information about reserved time slots (70% of slots for the time is reserved) on the Y axis. Filter by booking ticket or ticket property to narrow the scope of the data.
post/bookings/actions/average-booking-busy-times
Headers
Accept-Languagestring
The unique ID of the language code by ISO 639-1.
Request body
Example request
{
"booking_date": "2023-01-15",
"time_period": "week",
"booking_ticket_id": "13b8984a16913b8984a169cc490a",
"booking_property_id": "store",
"booking_property_value": "89ac83ca207a20c62c79bf"
}Response
OK
Example response
{
"data": {
"time_unit": "hour",
"chart_data": [
{
"x_axis_value": "7",
"y_axis_value": "32"
}
]
}
}