> 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: Restaurants Dashboard Navigation

## Article: Restaurants Dashboard Navigation

## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/skills/restaurants-dashboard-navigation.md

## Article Content:

# Restaurants Dashboard Navigation

Build direct links into the restaurant pages of a site's dashboard. For the general URL contract (metaSiteId, fallbacks, redirects), see [Dashboard Navigation](https://dev.wix.com/docs/api-reference/business-solutions/bookings/skills/dashboard-navigation.md).

Restaurant pages are split across **three apps** with three URL namespaces:

- **Wix Restaurants Menus** (`b278a256-2757-4f19-9313-c05c783bec92`) — menus, sections, items. Routes under `wix-restaurants-menus-new/`.
- **Wix Restaurants Orders** (`9a5d83fd-8570-482e-81ab-cfa88942ee60`) — online orders board and online-ordering settings. Routes under `wix-restaurants-orders-new/`.
- **Wix Table Reservations** (`f9c07de2-5341-40c6-b096-8eb39de391fb`) — reservations, floor plans, reservation experiences. Routes under `wix-table-reservations/`.

Older links (`restaurants/menus-management`, `restaurants/table-reservations`, `restaurants-orders-prep-board`, `olo-settings/...`) redirect to the current routes.

## Menus Pages (Wix Restaurants Menus)

| Page | URL after `/dashboard/{metaSiteId}/` | What it manages |
|---|---|---|
| Menus | `wix-restaurants-menus-new` | All menus (and their sections) |
| Edit menu | `wix-restaurants-menus-new/menu/{menuId}` | A specific menu |
| Items | `wix-restaurants-menus-new/items` | All menu items |
| Menu printing | `wix-restaurants-menus-new/menus-printing` | Print-ready menu export |

## Orders Pages (Wix Restaurants Orders)

| Page | URL after `/dashboard/{metaSiteId}/` | What it manages |
|---|---|---|
| Orders board | `wix-restaurants-orders-new` | Incoming online orders (prep board) |
| Online orders settings | `wix-restaurants-orders-new/settings` | Online-ordering settings hub |

Fulfillment and ordering sub-settings live at `wix-restaurants-orders-new/settings/{subpage}`: `pickup`, `delivery`, `pickup-delivery`, `dine-in`, `closure-dates`, `scheduling-page`, `service-fee`, `printing`, `doordash`.

## Reservations Pages (Wix Table Reservations)

| Page | URL after `/dashboard/{metaSiteId}/` | What it manages |
|---|---|---|
| Reservations list | `wix-table-reservations/table-reservations` | All table reservations |
| Floor plan view | `wix-table-reservations/floor-plan-view` | Live floor-plan view of reservations |
| Floor plan editor | `wix-table-reservations/floor-plan` | Table layout (floor plan) |
| Create experience | `wix-table-reservations/create-experience` | New reservation experience |
| Experience settings | `wix-table-reservations/experience` | A reservation experience (seating rules, policies) |

Experience sub-settings live at `wix-table-reservations/experience/{subpage}`: `details`, `schedule`, `reservation-form`, `reservation-settings`, `table-assignment`, `polices`.

## Pairing Entities with Their Read APIs

Fetch the entity via REST, then link the matching dashboard page. All calls use `https://www.wixapis.com` with an `Authorization` header.

| Entity | Read API | Dashboard link |
|---|---|---|
| Menu | `POST /restaurants/menus-menu/v1/menus/query` · `GET /restaurants/menus-menu/v1/menus` | `wix-restaurants-menus-new/menu/{menuId}` (edit) or `wix-restaurants-menus-new` (list) |
| Section | `POST /restaurants/menus-section/v1/sections/query` | `wix-restaurants-menus-new` (sections are managed inside their menu) |
| Item | `POST /restaurants/menus-item/v1/items/query` | `wix-restaurants-menus-new/items` |
| Order | `POST /ecom/v1/orders/search` · `GET /ecom/v1/orders/{orderId}` | `wix-restaurants-orders-new` (board) or `ecom-platform/order-details/{orderId}` |
| Reservation | `POST /table-reservations/reservations/v1/reservations/query` · `GET /table-reservations/reservations/v1/reservations/{reservationId}` | `wix-table-reservations/table-reservations` |
| Reservation location (settings) | `POST /table-reservations/reservation-locations/v1/reservation-locations/query` | `wix-table-reservations/experience` |

Restaurant online orders are eCommerce orders (their `lineItems[].catalogReference.appId` is `9a5d83fd-8570-482e-81ab-cfa88942ee60`), so they can also be read and linked through the eCommerce orders pages.

Example — after creating a menu, hand back its edit link:

```
Created "Dinner Menu".
Manage it here: https://manage.wix.com/dashboard/{metaSiteId}/wix-restaurants-menus-new/menu/{menuId}
```