Create a booking
create_bookingBook a real meeting. This sends invitations and writes to connected calendars, and it cannot be undone except by cancelling. Ask the person to confirm the event, the exact time and the attendee details before calling it, and use their real name and email — never a placeholder. The start and end must be copied verbatim from a recent list_available_slots response; this server re-checks them against live availability and refuses times it cannot find. There is no idempotency key: if this call returns an uncertain outcome, do not call it again — call list_upcoming_bookings and read what actually happened.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | Yes | The matching end from that same slot. | |
| name | Yes | The attendee’s real name. | |
| note | No | Optional note shared with the host (max 2000 characters). | |
| Yes | The attendee’s real email address. Invitations go here. | ||
| start | Yes | Start, copied exactly from a fresh list_available_slots response. | |
| booker_tz | No | Attendee IANA timezone, e.g. Europe/Berlin. Defaults to UTC. | |
| event_type | Yes | Event slug from list_event_types. |