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:
215238eb-22a5-4c36-9e7b-e7c08025e04e) — catalog: products, categories, inventory. Routes under wix-stores/.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.
| Page | URL after /dashboard/{metaSiteId}/ | What it manages |
|---|---|---|
| Products list | wix-stores/products | All products |
| New product | wix-stores/products/new-product | Create a product |
| Edit product | wix-stores/products/product/{productId} | A specific product |
| Categories | wix-stores/categories/list | Product categories |
| Inventory | wix-stores/inventory | Stock levels per variant |
| Import products | wix-stores/import-products | CSV import |
| Back in stock | wix-stores/back-in-stock | Back-in-stock notification requests |
| Store settings | wix-stores/settings | Stores-level settings |
Sales-channel pages (Google, Meta, Amazon, eBay, Pinterest, PayPal) live at wix-stores/channel/{channel}, e.g. wix-stores/channel/google.
| Page | URL after /dashboard/{metaSiteId}/ | What it manages |
|---|---|---|
| Orders list | ecom-platform/orders-list | All orders |
| Order details | ecom-platform/order-details/{orderId} | A specific order |
| Create manual order | ecom-platform/orders/create-manual | Draft/manual orders |
| Abandoned checkouts | ecom-platform/abandoned-checkouts | Abandoned cart recovery |
| Gift cards | ecom-platform/gift-cards | Gift card products |
| Gift card sales | ecom-platform/gift-cards/sales | Sold gift cards |
| Shipping | ecom-platform/delivery-profile | Shipping rates and regions (delivery profiles) |
| Tax | ecom-platform/tax | Tax rules |
| Tax exemptions | ecom-platform/tax-exemptions | Exempt customer groups |
| Checkout settings | ecom-platform/checkout-settings | Checkout configuration |
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.
| Entity | Read API | Dashboard link |
|---|---|---|
| Product (Catalog V3) | POST /stores/v3/products/search · POST /stores/v3/products/query | wix-stores/products/product/{productId} (edit) or wix-stores/products (list) |
| Product (Catalog V1) | POST /stores-reader/v1/products/query | same as above |
| Category | Categories API (/categories/v1/categories) | wix-stores/categories/list |
| Inventory item (V3) | POST /stores/v3/inventory-items/query | wix-stores/inventory |
| Order | POST /ecom/v1/orders/search · GET /ecom/v1/orders/{orderId} | ecom-platform/order-details/{orderId} |
| Abandoned checkout | Abandoned Checkouts API (/ecom/v1/abandoned-checkouts) | ecom-platform/abandoned-checkouts |
Example — after creating a product, hand back its edit link:
Last updated: 30 July 2026