Cancel a booking (invitee)
cancel_booking_as_inviteeCancels a booking by its id and token. The event is removed from the host's calendar. Paid bookings cancelled before refundableUntil are refunded in full. Later cancellations get no refund. The event type sets the rules, which get_booking shows: no changes after changeableUntil (409 change_too_late), no cancelling when canCancel is false (409 cancel_not_allowed, reschedule instead), and a reason when cancelReasonRequired is true (422 reason_required).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | a string at least 1 character(s) long | |
| token | Yes | a string at least 10 character(s) long | |
| reason | No | a string at most 500 character(s) long | |
| following | No | for a series: also cancel every later meeting |