This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
An event that's triggered when a booking is declined.
The onBookingDeclined()
event handler runs when a booking is declined. The received BookingDeclinedEvent
object contains information about the booking that was declined and metadata for the event.
Note: Backend events don't work when previewing your site.
function wixBookingsV2_onBookingDeclined(event: BookingDeclinedEvent): void;
Information about the booking that was declined and metadata for the event.
export function wixBookingsV2_onBookingDeclined(event) {
const eventId = event.metadata.id;
const entityId = event.data.booking._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.