> 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: Wix Bookings: Booking Policies Page ## Article: Wix Bookings: Booking Policy Page ## Article Link: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/supported-wix-app-dashboard-pages/wix-bookings/wix-bookings-booking-policies-page.md ## Article Content: # Wix Bookings: Booking Policies Page The Booking Policies page has 1 dashboard plugin slot. [Slots](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/supported-wix-app-dashboard-pages/about-dashboard-page-slots.md) are the placeholders in the UI for plugins. The slot ID is the value for the required `extends` field when configuring the plugin in the [app dashboard](https://dev.wix.com). ## Location in Dashboard Settings > Booking Settings > Booking policies > Default policy ## Dashboard plugin slots The Booking Policies page features 1 plugin slot. ### Slot: Staff assignment This dashboard plugin slot is positioned at the bottom of the **Automatic staff assignment** section.  #### Configuration Use the following slot ID for the `extends` property when configuring your plugin in your app's dashboard: **slot ID:** `9cec51b2-78a7-4270-ac1b-4152ff19a124` For example: ```json { "hostingPlatform": "BUSINESS_MANAGER", "extends": "9cec51b2-78a7-4270-ac1b-4152ff19a124", "description": "Dashboard plugin on the Wix Bookings Policies Page.", "title": "Plugin Slot", "height": 300, "iframeUrl": "https://www.example.com/my-plugin", "componentName": "Slot" } ```
__Important:__ The hosting platform must be "BUSINESS_MANAGER".#### Interaction between the dashboard page and your plugin Apps built by Wix pass parameters via dashboard slots for you to utilize in your plugin's functionality. Learn how to [interact with and retrieve parameters from the dashboard page](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/about-dashboard-plugin-extensions.md). This slot passes the following parameters: | Name | Type | Description | | ----------------- | ------ | ------------------ | | `policyId` | String | Policy ID. | ### Multiple dashboard plugins in the same slot This plugin slot can host multiple plugins. The plugins are displayed vertically and ordered by date created, with the most recently created plugin displayed at the bottom. ## See also - [About Dashboard Page Slots](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/supported-wix-app-dashboard-pages/about-dashboard-page-slots.md) - [About Dashboard Plugin Extensions](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/about-dashboard-plugin-extensions.md) - [Add Self-hosted Dashboard Plugin Extensions](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/dashboard-extensions/add-self-hosted-dashboard-plugin-extensions.md)