GET /bookings/{id}. Retrieve a single booking by ID
Fetch a single booking by integer id. Returns all fields including booker, service, location, conference link and payment.
The /bookings/{id} endpoint retrieves a single booking in full detail by its integer id. Use it to look up a record after a webhook, resolve a booking linked in another system or refresh stale data. The response is the same full Booking object as the list endpoint. There’s no abbreviated version.
Requesting an id that belongs to a booking in another user’s account returns 404, not 403. The API never confirms or denies that a booking outside your account exists, so you cannot enumerate other users’ booking ids through error codes.