> 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: bulkCreateBooking(createBookingsInfo: Array, options: BulkCreateBookingOptions) # Method package: wixBookingsV2 # Method menu location: wixBookingsV2 --> bookings --> bulkCreateBooking # Method Link: https://dev.wix.com/docs/velo/apis/wix-bookings-v2/bookings/bulk-create-booking.md # Method Description: Creates multiple bookings. See [`createBooking()`](https://www.wix.com/velo/reference/wix-bookings-v2/bookings/createbooking) documentation. If for any of the bookings required fields were not passed on the request or if the caller doesn't have the required permissions to create such booking, the call will fail. If the request contains unavailable bookings, the call will be completed successfully, but the unavailable bookings will not be created and will be considered as a failure on the response. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## bulkCreateBooking example ```javascript import { bookings } from 'wix-bookings.v2'; async function bulkCreateBooking(createBookingsInfo, options) { try { const result = await bookings.bulkCreateBooking(createBookingsInfo, options); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## bulkCreateBooking example for exporting from backend code ```javascript import { bookings } from 'wix-bookings.v2'; import { webMethod, Permissions } from 'wix-web-module'; export const bulkCreateBooking = webMethod( Permissions.Anyone, async (createBookingsInfo, options) => { try { const result = await bookings.bulkCreateBooking(createBookingsInfo, options); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---