Bookings
List all bookings
Retrieves a paginated list of all bookings for the current organization. Supports filtering by space IDs and customer ID. Results are paginated and can be sorted by various fields.
GET
Error
Documentation Index
Fetch the complete documentation index at: https://docs.boseat.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
OAuth2 authentication for Boseat API
Query Parameters
Page number (1-indexed)
Required range:
x >= 1Example:
1
Number of items per page
Required range:
1 <= x <= 100Example:
20
Filter bookings by space identifiers. Returns only bookings for the specified spaces. If not provided, returns bookings for all spaces in the organization.
Example:
[
"2d319de5-4700-4099-9353-2a951e67416b",
"0c6f89a1-233b-4c7a-8b85-98f06a90a9f3"
]
Filter bookings by customer ID. Returns only bookings made by the specified customer. Useful for retrieving a customer's booking history.
Example:
"a3f1d7d0-ef1d-4b2e-aad2-123456789abc"
Previous
Create a bookingCreates a new booking reservation for a space and product. The booking is initially created in PENDING status. Customer contact information (email, phone) is optional at creation but required when confirming the booking. The system verifies slot availability before creating the booking.
Next
Error