> 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: Create an Editor Deep Link ## Article: Create an Editor Deep Link ## Article Link: https://dev.wix.com/docs/api-reference/app-management/editor-deep-link/create-an-editor-deep-link.md ## Article Content: # Create an Editor Deep Link

Permissions
This endpoint requires the Manage Your App permission.md scope.

  POST   https://www.wixapis.com/apps/v1/post-installation/editor-deep-link ### Body Params Name | Type | Description ---------|----------|---------   **customParams** | object |Array of key-value pairs | **key** | string | | **value** | string | ### Response Object Name | Type | Description ---------|----------|--------- **url** | URL | Deep Link URL ### Example #### Request ```CURL Curl -X POST \ https://www.wixapis.com/apps/v1/post-installation/editor-deep-link \ -H 'Authorization: ' -data-raw '{ "customParams": [ { "key1": "value1", "key2": "value2" } ] }' ``` #### Response ``` { "url": "https://www.wix.com/editor/8d157c7a-2cb8-4ea9-bf6f-3039e30099a3?appMarketParams=eyJraWQiOiJ5R0xVRVlVTiIsImFsZy.." } ``` ### Status/Error Codes The response will include an [HTTP status code](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/troubleshooting/about-errors.md).