> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

## Resource: Forms Dashboard Navigation

## Article: Forms Dashboard Navigation

## Article Link: https://dev.wix.com/docs/api-reference/crm/forms/skills/forms-dashboard-navigation.md

## Article Content:

# Forms Dashboard Navigation

Build direct links into the Wix Forms pages of a site's dashboard. For the general URL contract (metaSiteId, fallbacks, redirects), see [Dashboard Navigation](https://dev.wix.com/docs/api-reference/business-solutions/bookings/skills/dashboard-navigation.md).

## Main Pages

| Page | URL after `/dashboard/{metaSiteId}/` | What it manages |
|---|---|---|
| Forms list | `wix-forms` | All forms on the site |
| Form builder | `wix-forms/form/{formId}` | Edit a specific form (fields, rules, submit settings) |
| Standalone form | `wix-forms/standalone-form` | Create a standalone form (has its own shareable page, not embedded in a site page) |
| Submissions | `wix-forms-and-payments/submissions` | Submissions table across forms |
| Templates | `wix-forms-and-payments/templates` | Create a form from a template |
| Forms settings | `wix-forms-and-payments/settings` | Forms-level settings |

Two URL namespaces appear here because the forms management pages and the form builder are registered by two apps (`14ce1214-b278-a7e4-1373-00cebd1bef7c` and `225dd912-7dea-4738-8688-4b8c6955ffc2`); `wix-forms` also redirects to the forms list, so it's the stable entry point.

Entity-specific links (`{formId}`) accept the entity's ID appended as an extra path segment. Query params can follow.

## 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 forms use the `wix.form_app.form` namespace.

| Entity | Read API | Dashboard link |
|---|---|---|
| Form | `GET /form-schema-service/v4/forms` · `POST /form-schema-service/v4/forms/query` · `GET /form-schema-service/v4/forms/{formId}` | `wix-forms/form/{formId}` (edit) or `wix-forms` (list) |
| Submission | `POST /form-submission/v4/submissions/namespace/query` (filter must include the `namespace`) · `GET /form-submission/v4/submissions/{submissionId}` | `wix-forms-and-payments/submissions` |

Example — after creating a form, hand back its links:

```
Created "Contact Form".
Edit it here: https://manage.wix.com/dashboard/{metaSiteId}/wix-forms/form/{formId}
See submissions: https://manage.wix.com/dashboard/{metaSiteId}/wix-forms-and-payments/submissions
```

## Notes

- Creating forms via the [Create Form](https://dev.wix.com/docs/api-reference/crm/forms/skills/create-form.md) recipe (Form Schemas API) makes them appear in the forms list above.