About the Wix eCommerce Gift Cards Service Plugin

The Wix eCommerce Gift Cards Provider Service Plugin allows you to integrate with Wix as a gift card service provider, enabling Wix merchants to utilize your gift card functionalities directly on their sites, providing a seamless experience for their customers.

By integrating your service with Wix, you can facilitate key gift card operations such as balance retrieval, redemption, and voiding transactions. These operations are seamlessly integrated into the site's checkout page, enhancing the overall customer experience.

The integration process involves creating an app in the Wix App Market via the Wix Dev Center, and configuring the Gift Cards Provider service plugin extension.

Use cases

Before you begin

  • It's important to ensure that your implementation of the gift cards provider service plugin endpoints adheres to the provided specifications.

  • Implementation of this Service Plugin is dependent on configuration of the eCommerce Gift Cards Provider extension in the Dev Center:

    NameTypeDescription
    deploymentUristringRequired. Base URI where the endpoints are called. Wix eCommerce appends the endpoint path to the base URI. For example, to call the Balance Retrieval endpoint at https://my-gift-cards.com/v1/getBalance, the base URI you provide here is https://my-gift-cards.com/.
    componentNamestringUnique name for this component, that appears only in the Dev Center.
  • Configuration setup: When a site owner installs and authorizes your app to provide gift card operations, Wix will send a JSON Web Token (JWT) with an instance ID to your deployment URI + endpoint path. The app should collect the JWT, decode it, and store the resulting instance ID.
    For example, the token in this request:

    Copy
    1

    Decodes into:

    Copy
    1

Terminology

  • Redeem: Applying a gift card balance to a purchase, including subtracting the applied value from the gift card balance.
  • Void: Reversing a redeem action and returning the applied value to the gift card balance.
Was this helpful?
Yes
No