About the Form Submissions Service Plugin

As a form submission provider, you can integrate with Wix to allow allow site owners to request and use your services on their Wix sites. By integrating your service with Wix, the service validates and submits a site visitor's form.

The integration is done via an app in the Wix App Market and by implementing the Form Submissions service plugin. After the app is installed on a site, Wix triggers a call to your service whenever a form is submitted on the site.

Before you begin

It’s important to note the following points before starting to code:

  • The Form Submission service plugin only works with the Wix Forms app.
  • There are several apps that use forms. To validate form submission for a specific Wix app, configure your app in the Wix Developers Center for that Wix app by defining the relevant namespace field in the extension. For example, the namespace for the Wix Forms app is "wix.form_app.form".

Terminology

  • Submission: Data received when a site visitor submits a form.
  • Validation: Process that makes sure the information that the site visitor put into a form is correct and meets certain rules.
  • Form: Online interface that allows site visitors to input and submit data.

Get started

Follow these steps to begin implementing your service plugin.

Choose a framework

You can implement this service plugin with the following frameworks:

Configure your service plugin

To configure and customize your plugin, you need to provide important information in the service plugin configuration file. You can configure your plugin in the Wix Dev Center. For details, see Form Submissions Extension Configuration.

Define handler functions

Use formSubmissions.provideHandlers() to define the following handler functions that implement your custom business logic. Make sure you define all required functions.

FunctionRequired
validateSubmission()Yes

Code examples

Below is an example for implementing the Form Submissions service plugin in your code.

CLI: Basic code structure

This is the basic code structure for implementing the Form Submissions service plugin with the Wix CLI:

Copy
1

Self-hosted: Basic code structure

This is the basic code structure for implementing a self-hosted Form Submissions service plugin:

Copy
1

See also

Was this helpful?
Yes
No

Extension Config

To configure and customize your service plugin, you need to provide important details in the plugin.json configuration file.

Note

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

Configuration Params
deploymentUriSpiBaseUri

Deployment URI where the endpoints are called. Wix Forms appends the endpoint path to the deployment URI. For example, to call the Validate Submission endpoint at https://my-form-submissions.com/v1/validateSubmission, the deploymentUri you provide here is https://my-form-submissions.com/.


namespaceConfigsArray<FormsSubmissionsExtensionNamespaceConfig>

Namespace names.


Was this helpful?
Yes
No