> 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: iframe Query Parameters for Dashboard Extensions ## Article: iframe Query Parameters for Dashboard Extensions ## Article Link: https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/dashboard-extensions/iframe-query-parameters-for-dashboard-extensions.md ## Article Content: # iframe Query Parameters for Dashboard Extensions When a user accesses your self-hosted iframe dashboard extension through a client-side action, Wix provides you with the following query parameters: ```bash [endpoint]?instance=[signed-instance-data]&locale=[locale]&cacheKiller=[cacheKiller]&viewMode=dashboard&isPublish=[isPublish]&containerProtocol=[httpProtocol]&siteUrl=[site-url] ``` | Name | Value | Comments | |--|--|--| | ```endpoint``` | The [Dashboard URL](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-pages/about-dashboard-page-extensions.md), as provided in your app's dashboard. | | ```instance``` | The [signed app instance](https://dev.wix.com/docs/build-apps/develop-your-app/access/app-instances/about-app-instances.md). | The app instance ID (```instanceId```) is the unique identifier of your app within a specific user's website. | | `locale` | Current local value. | This is the browser's language identified with two characters. For example, English = `en`. | | ```cacheKiller``` | Ensures no caching of the iframe content by the host browser. | This is a randomly generated number to ensure the browser hasn't seen this URL before. | | ```viewMode``` | Will only get 'dashboard' as it's an iframe dashboard extension. | | ```isPublish``` | Boolean indicating if the site is published. | | ```containerProtocol``` | Indicates if it's HTTP or HTTPS. | | ```siteUrl``` | The address of the site to which the app belongs. | Relevant only if the site has already been published. |