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

All CMS (app ID e593b0bd-b783-45b8-97c2-873d42aacaf4) pages live under:

Copy

Main Pages

PageURL after /dashboard/{metaSiteId}/What it manages
Collections listwix-cmsAll CMS collections on the site
Collection itemswix-cms/data/{collectionId}A specific collection's items table

Older links (database, developer-tools/database) redirect to wix-cms. {collectionId} is the collection's ID (e.g. Stores/Products for app collections, or the ID you set when creating the collection).

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
Collection (schema)GET /wix-data/v2/collections/{collectionId} · GET /wix-data/v2/collections (list)wix-cms/data/{collectionId}
Data itemPOST /wix-data/v2/items/query (body includes dataCollectionId) · GET /wix-data/v2/items/{itemId}?dataCollectionId=...wix-cms/data/{collectionId} (the collection's items table)

Example — after creating a collection and inserting items:

Copy

Notes

  • There is no per-item dashboard URL; link the collection's items table.
  • Unknown deeper paths fall back to the longest matching route, so a wrong collection ID lands on the CMS home rather than a 404.

Last updated: 30 July 2026

Did this help?