Stores 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 store pages of a site's dashboard. For the general URL contract (metaSiteId, fallbacks, redirects), see Dashboard Navigation.

Store pages are split across two apps with two URL namespaces:

  • Wix Stores (215238eb-22a5-4c36-9e7b-e7c08025e04e) — catalog: products, categories, inventory. Routes under wix-stores/.
  • Checkout & Orders / eCommerce platform (1380b703-ce81-ff05-f115-39571d94dfcd) — orders, checkout, gift cards, shipping, tax. Routes under ecom-platform/.

Older store/... links (e.g. store/orders, store/inventory) redirect to the current routes.

Catalog Pages (Wix Stores)

PageURL after /dashboard/{metaSiteId}/What it manages
Products listwix-stores/productsAll products
New productwix-stores/products/new-productCreate a product
Edit productwix-stores/products/product/{productId}A specific product
Categorieswix-stores/categories/listProduct categories
Inventorywix-stores/inventoryStock levels per variant
Import productswix-stores/import-productsCSV import
Back in stockwix-stores/back-in-stockBack-in-stock notification requests
Store settingswix-stores/settingsStores-level settings

Sales-channel pages (Google, Meta, Amazon, eBay, Pinterest, PayPal) live at wix-stores/channel/{channel}, e.g. wix-stores/channel/google.

Orders & Checkout Pages (eCommerce)

PageURL after /dashboard/{metaSiteId}/What it manages
Orders listecom-platform/orders-listAll orders
Order detailsecom-platform/order-details/{orderId}A specific order
Create manual orderecom-platform/orders/create-manualDraft/manual orders
Abandoned checkoutsecom-platform/abandoned-checkoutsAbandoned cart recovery
Gift cardsecom-platform/gift-cardsGift card products
Gift card salesecom-platform/gift-cards/salesSold gift cards
Shippingecom-platform/delivery-profileShipping rates and regions (delivery profiles)
Taxecom-platform/taxTax rules
Tax exemptionsecom-platform/tax-exemptionsExempt customer groups
Checkout settingsecom-platform/checkout-settingsCheckout configuration

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. Dashboard routes are the same whether the site's catalog is V1 or V3.

EntityRead APIDashboard link
Product (Catalog V3)POST /stores/v3/products/search · POST /stores/v3/products/querywix-stores/products/product/{productId} (edit) or wix-stores/products (list)
Product (Catalog V1)POST /stores-reader/v1/products/querysame as above
CategoryCategories API (/categories/v1/categories)wix-stores/categories/list
Inventory item (V3)POST /stores/v3/inventory-items/querywix-stores/inventory
OrderPOST /ecom/v1/orders/search · GET /ecom/v1/orders/{orderId}ecom-platform/order-details/{orderId}
Abandoned checkoutAbandoned Checkouts API (/ecom/v1/abandoned-checkouts)ecom-platform/abandoned-checkouts

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

Copy

Last updated: 30 July 2026

Did this help?