Sign in

Create booking

documented

Create a new booking on the account (payload includes start time, timezone, participants, and answers).

POST /v1/bookingsBookingsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.youcanbook.me/v1/{{$profileId}}/bookings" \
  -X POST \
  -u "{{$account_id}}:{{YOUCANBOOK_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"startsAt": "{{$startsAt}}", "timeZone": "{{$timeZone}}", "units": {{$units}}, "numberOfSlots": {{$numberOfSlots}}, "answers": [ {"code": "EMAIL", "string": "{{$email}}"}, {"code": "FNAME", "string": "{{$firstName}}"}, {"code": "LNAME", "string": "{{$lastName}}"} ] }'