> 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 ## Resource: Bookings ## Article: How Bookings are Confirmed or Declined ## Article Link: https://dev.wix.com/docs/velo/apis/wix-bookings-v2/bookings/how-bookings-are-confirmed-or-declined.md ## Article Content: # How Bookings Are Confirmed or Declined The following flow presents how `confirmOrDeclineBooking()` determines the booking status. ![flow](./images/confirmator_flow.png) Calling a checkout after creating a booking, is optional, `confirmOrDeclineBooking()` can be called after `createBooking()` + **Whether the availability check is required** If `skipAvailability` is `true`, it will skip the check and it will never be a `doublebooking`. + **Whether the booking is paid for**.If the payment status is `PAID` or `PARTIALLY_PAID`, the booking is confirmed regardless of the `doubleBooking` parameter. + **Wether the booking requires business confirmation**. Instead of `CONFIRMED` the status is set to `PENDING`. This happens since it needs to always be manually approved by the owner. You can bypass the confirmation check by setting the `skipBusinessConfirmation` property to `true` when [creating a booking](https://www.wix.com/velo/reference/wix-bookings-v2/bookings/createbooking).