v1

latestOpenAPI 3.0.32026-07-131670112.4 KB
Bookings

Get booking

Return a single booking by ID for the authenticated owner.

get/v1/bookings/{id}

Path parameters

idstring required

Response

Default Response

object required

Example response

{
  "Id": 88,
  "uid": "bk_abc123def456",
  "event_type_id": "14",
  "user_id": "7",
  "attendee_name": "Taylor Brooks",
  "attendee_email": "taylor@example.com",
  "attendee_timezone": "America/Chicago",
  "start_time": "2026-03-20T15:00:00.000Z",
  "end_time": "2026-03-20T15:30:00.000Z",
  "status": "confirmed",
  "cancel_url": "/cancel/cancel_tok_123",
  "reschedule_url": "/reschedule/res_tok_123"
}