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

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

  • Contacts (74bff718-5977-47f2-9e5f-a9fd0047fd1f) — the contact list, contact view, and import. Routes under contacts/.
  • Segments (ee070097-0850-4f23-ad8c-3cdd4efd5244) — contact segments. Routes under segments/.

Contacts Pages

PageURL after /dashboard/{metaSiteId}/What it manages
Contacts listcontactsAll contacts (filter, label, search)
Contact viewcontacts/view/{contactId}A specific contact's details and activity
Import contactscontacts/contacts/importImport contacts (CSV, Gmail)

Older contacts/import links redirect to the current import route.

Segments Pages

PageURL after /dashboard/{metaSiteId}/What it manages
SegmentssegmentsContact segments (saved smart filters over contacts)

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
ContactPOST /contacts/v4/contacts/query · GET /contacts/v4/contacts/{id}contacts/view/{contactId} (view) or contacts (list)
LabelGET /contacts/v4/labels · POST /contacts/v4/labels/querycontacts (labels filter the contacts list)
SegmentSegments API (no public REST read endpoint)segments

Example — after creating a contact, hand back its view link:

Copy

Last updated: 30 July 2026

Did this help?