> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: confirmOrDeclineBooking(bookingId: string, options: ConfirmOrDeclineBookingOptions) # Method package: wixBookingsV2 # Method menu location: wixBookingsV2 --> bookings --> confirmOrDeclineBooking # Method Link: https://dev.wix.com/docs/velo/apis/wix-bookings-v2/bookings/confirm-or-decline-booking.md # Method Description: Use `confirmOrDeclineBooking()` to determine if the booking is valid, payment is received, and the booking can be processed. Call `confirmOrDeclineBooking()` after checkout or after calling `createBooking()` to verify the booking. + If a session is valid and payment is received, the booking is visible on the calendar. + If a session is double booked, `confirmOrDeclineBooking()` can catch this and decline the duplicate booking, the booking is not visible on the calendar. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## confirmOrDeclineBooking example for dashboard page code ```javascript import { bookings } from 'wix-bookings.v2'; async function confirmOrDeclineBooking(bookingId, options) { try { const result = await bookings.confirmOrDeclineBooking(bookingId, options); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## confirmOrDeclineBooking example for exporting from backend code ```javascript import { bookings } from 'wix-bookings.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedConfirmOrDeclineBooking = elevate(bookings.confirmOrDeclineBooking); export const confirmOrDeclineBooking = webMethod( Permissions.Anyone, async (bookingId, options) => { try { const result = await elevatedConfirmOrDeclineBooking(bookingId, options); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---