Update a booking
update_bookingMUTATES YouCanBookMe data: updates an existing booking (reschedule, rename, mark cancelled/no-show). YCBM API: PATCH /v1/bookings/{bookingId} (JSON, partial update). Set any of title/startsAt/endsAt/cancelled/noShow/timeZone/locale/units; use the fields passthrough for answers/linkFields or other documented fields. The path id is never sent in the body.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | New booking title. | |
| units | No | New number of slot units. | |
| endsAt | No | New end time, ISO 8601 (reschedule). | |
| fields | No | Additional documented YCBM fields to send in the JSON write body — merged OVER the typed fields above. | |
| locale | No | New locale. | |
| noShow | No | Mark the attendee as a no-show (true) or not (false). | |
| startsAt | No | New start time, ISO 8601 (reschedule). | |
| timeZone | No | New IANA time zone. | |
| bookingId | Yes | The booking id to update (path only; required). | |
| cancelled | No | Set true to cancel the booking, false to un-cancel. |