Welcome

Welcome to the documentation for our suite of Gateway APIs. This set of tools is designed to empower developers and SaaS platforms by providing a seamless and efficient interface to manage all things payments. From the onboarding of companies to the streamlined handling of payments, this suite of APIs is purpose-built to be robust, secure, and easy to integrate.

Authentication

All the API’s utilize Basic authentication, where you need to include the Authorization header in your HTTPS requests. The header value should be in the format Basic Base64 encode using the relevant clientID and SecretKey.

Example : Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=

To authenticate, you’ll require the following credentials:

clientID: Your unique account identifier. SecretKey: Your account password, used for sending API requests. Ensure to replace CLIENTID and SECRETKEY with your actual client ID and secret key provided by the API provider. Additionally, fill in the necessary information within the request body JSON structure.

"header": [
  {
    "Authorization": Basic[]
  }
]