> 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: Introduction
## Article Link: https://dev.wix.com/docs/velo/apis/wix-bookings-v2/bookings/introduction.md
## Article Content:
# About the Wix Bookings V2 API
Developer Preview
APIs in Developer Preview are subject to change and are not intended for use in production.
Send us your suggestions for improving this API. Your feedback is valuable to us.
With the Wix Bookings V2 API you can manage bookings for a site's services.
The booking object holds information about the customer and the session or
schedule they have booked. You can then use the
eCommerce APIs to handle the checkout and payment flow.
With Wix Bookings V2 API you can retrieve existing bookings and manage the booking's life cycle.
## Terminology
For a comprehensive glossary of Wix Bookings terms, see [Terminology](https://www.wix.com/velo/reference/wix-bookings-v2/terminology).
## Before you begin
It’s important to note the following points before starting to code:
+ The `participantNotification` field holds only information about the last
message sent to the customer. It also doesn't include details which type of
message has been sent.
+ To use the Bookings V2 API, import `{ bookings }` from the `wix-bookings.v2` module:
```javascript
import { bookings } from 'wix-bookings.v2';
```