Introduction to MassPay JavaScript SDK

MassPay's JavaScript SDK is a library that allows you to easily integrate MassPay Global Payout Services into your JavaScript applications. With MassPay's JavaScript SDK, you can build custom Payout solutions that meet your specific needs, whether it's for e-commerce, online marketplaces, or any other type of application that requires Payout orchestration / Payout processing.

The MassPay JavaScript SDK offers a wide range of features, including support for various payout methods, flexible payout options, and advanced security features. You can use the JavaScript SDK to create custom integrations that work seamlessly with your existing applications.

Getting started with the MassPay JavaScript SDK is easy. The SDK comes with detailed documentation and sample code that can help developers quickly get up to speed.

👍

You can find SDK here.

📘

Additionally, the MassPay developer portal provides access to comprehensive documentation, support, and resources to help developers build and deploy your global payout solutions.


Prerequisites

  • Basic knowledge of JavaScript: To use the MassPay JavaScript SDK, you should have a basic understanding of the JavaScript programming language and its syntax.
  • API credentials: To use the MassPay JavaScript SDK, you will need to obtain API credentials from your MassPay account. You can find the API credentials in the MassPay Developer Portal.
  • JavaScript version: You should have Node.js stable version 12 or later installed on your system.

Installation

  1. Use these commands to install masspay-js-sdk in your terminal, based on your preferences.

npn

npm install masspay-js-sdk

yarn

yarn add masspay-js-sdk

Authentication

Before you can use the MassPay JavaScript SDK, you will need to obtain your MassPay API credentials, which include your API key. You can find your API credentials in your MassPay account settings.


Usage

If our MassPay SDK installation was successful, execute the following code:

import { MasspayJsSdk } from 'masspay-js-sdk';

const sdk = new MasspayJsSdk({
  AUTHORIZER_NAME_API_KEY: 'YOUR API KEY',
});
(async () => {
  try {
    const response = await sdk.AccountService.getAccountBalance({
      /* query parameters */
    });
    // use response data
  } catch (error) {
    // handle error
  }
})();

🚧

Make sure your Authentication credentials are filled in correctly.


More?

In conclusion, the MassPay JavaScript SDK offers a seamless and potent solution for integrating MassPay's Payout Orchestration Service into your JavaScript applications. With this SDK, you can effortlessly dispatch payouts to numerous recipients using a variety of payout methods, all achieved with minimal lines of code.

👍

If you are missing the SDK in another language or have any other questions, please don't hesitate to contact us for assistance. We are here to help you!