Extension Config


The JSON object below defines the configuration for this service plugin extension. How you supply values depends on the framework you’re using:

  • Self-hosted apps: After adding a service plugin extension to your app in the app dashboard, provide configuration details in your extension's page. Learn more about how to add and configure a self-hosted service plugin extension with REST or the SDK.
  • CLI apps: When you add a service plugin extension to your app with the Wix CLI, the required configuration details are populated automatically. You can then customize them in your extension's plugin.json file.
Note

If you created your service plugin extension with the CLI, required fields are automatically populated for you.

Configuration Params
deploymentUriDeploymentUri

Deployment URI where the endpoints are called. Wix Forms appends the endpoint path to the deployment URI. For example, to call the Override Form endpoint at https://my-form.com/v4/forms/override, the deploymentUri you provide here is https://my-form.com/.


namespacestringRequiredminLength 10maxLength 50

The app which the form belongs to. For example, the namespace for the Wix Forms app is wix.form_app.form.

Call Get Form to retrieve the namespace.


formIdsArray <string>maxItems 100format GUID

The IDs of the specific forms that will trigger the defined methods when a form is requested on the API. This field is optional. If empty, requests for all forms will trigger the methods.

Did this help?