Skip to main content
POST
/
calendars
/
bookings
Create Booking
curl --request POST \
  --url https://api.calendbook.com/calendars/bookings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "booking_date_time": "2023-11-07T05:31:56Z",
  "event_id": "<string>",
  "notes": "<string>",
  "guest": {
    "name": "<string>",
    "email": "[email protected]",
    "timezone": "<string>"
  }
}
'
{
  "booking_id": "4a9c017b-8d6c-4bee-9d49-a179cad49c5"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
booking_date_time
string<date-time>
required
event_id
string
required
guest
object
required
notes
string

Response

Booking created

booking_id
string