Authorization

This endpoint requires an authorization header. Pass the access token from the OAuth installation flow.

Permissions
This endpoint requires the Manage Your App permission scope.

  POST   https://www.wixapis.com/apps/v1/post-installation/editor-deep-link

Body Params

NameTypeDescription
  customParamsobjectArray of key-value pairs
| keystring
| valuestring

Response Object

NameTypeDescription
urlURLDeep Link URL

Example

Request

Copy Code
Curl -X POST \
https://www.wixapis.com/apps/v1/post-installation/editor-deep-link \
-H 'Authorization: <AUTH>'
-data-raw '{
"customParams": [
{
"key1": "value1",
"key2": "value2"
}
]
}'

Response

Copy Code
{
"url": "https://www.wix.com/editor/8d157c7a-2cb8-4ea9-bf6f-3039e30099a3?appMarketParams=eyJraWQiOiJ5R0xVRVlVTiIsImFsZy.."
}

Status/Error Codes

The response will include an HTTP status code.

Was this helpful?
Yes
No