About the Payment Settings Service Plugin

As a payment settings provider, you can integrate your service with Wix's payment process to allow merchants to request and use your services on their Wix sites. By integrating your service with Wix, the payment settings that are checked will then apply during the payment process.

The integration is done via an app in the Wix App Market and by implementing the Payment Settings service plugin. After the app is installed on a site, Wix triggers a call to your service when an order is placed from the checkout page of the site.

Using the service plugin, you can design your app to apply specific settings and send additional information to the payment provider. Currently, the only payment setting available to customize is whether to apply 3DS to an order. If 3DS is required, the customer will have to pass an additional layer of security before completing their payment. For example:

Before you begin

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

Terminology

  • 3 Domain Security (3DS): An additional layer of security for online credit and debit card transactions. The name refers to the three domains which interact using the protocol: the card issuer, the acquiring bank, and the payment gateway that facilitates the transaction. Learn more about 3DS payments with third-party payment providers.
  • Payment Providers: Different payment methods available to your Wix site. Learn more about accepting payments.

Get started

Follow these steps to begin implementing your service plugin.

Choose a framework

You can implement this service plugin with the following framework:

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.

Define handler functions

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

FunctionRequired
getPaymentSettings()Yes

Code examples

Below is an example for implementing the Payment Settings service plugin in your code.

Self-hosted: Basic code structure

This is the basic code structure for implementing a self-hosted Payment Settings service plugin:

Copy
1

See also

Was this helpful?
Yes
No