Restaurants Dashboard Navigation

Download skillThe skill is a reference md and part of wix-manage skill. You can use the following command to add the full wix-manage skill to your project:
Copy

Build direct links into the restaurant pages of a site's dashboard. For the general URL contract (metaSiteId, fallbacks, redirects), see Dashboard Navigation.

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.

PageURL after /dashboard/{metaSiteId}/What it manages
Menuswix-restaurants-menus-newAll menus (and their sections)
Edit menuwix-restaurants-menus-new/menu/{menuId}A specific menu
Itemswix-restaurants-menus-new/itemsAll menu items
Menu printingwix-restaurants-menus-new/menus-printingPrint-ready menu export

Orders Pages (Wix Restaurants Orders)

PageURL after /dashboard/{metaSiteId}/What it manages
Orders boardwix-restaurants-orders-newIncoming online orders (prep board)
Online orders settingswix-restaurants-orders-new/settingsOnline-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)

PageURL after /dashboard/{metaSiteId}/What it manages
Reservations listwix-table-reservations/table-reservationsAll table reservations
Floor plan viewwix-table-reservations/floor-plan-viewLive floor-plan view of reservations
Floor plan editorwix-table-reservations/floor-planTable layout (floor plan)
Create experiencewix-table-reservations/create-experienceNew reservation experience
Experience settingswix-table-reservations/experienceA 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.

EntityRead APIDashboard link
MenuPOST /restaurants/menus-menu/v1/menus/query · GET /restaurants/menus-menu/v1/menuswix-restaurants-menus-new/menu/{menuId} (edit) or wix-restaurants-menus-new (list)
SectionPOST /restaurants/menus-section/v1/sections/querywix-restaurants-menus-new (sections are managed inside their menu)
ItemPOST /restaurants/menus-item/v1/items/querywix-restaurants-menus-new/items
OrderPOST /ecom/v1/orders/search · GET /ecom/v1/orders/{orderId}wix-restaurants-orders-new (board) or ecom-platform/order-details/{orderId}
ReservationPOST /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/querywix-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:

Copy

Last updated: 30 July 2026

Did this help?