moneypal-sdk
v1.5.21
Published
## About This repository contains the official Javascript & Typescript SDK for Moneypal API. For the complete API reference, go to [API reference](https://api.Moneypal.io/docs/v1/swagger-ui).
Downloads
1
Readme
The Official Javascript & Typescript SDK for Moneypal API
About
This repository contains the official Javascript & Typescript SDK for Moneypal API. For the complete API reference, go to API reference.
Usage
Before You Begin
Make sure you have the credentials for Moneypal API Services. Otherwise, please contact Moneypal support for further instructions on how to obtain your API credentials.
Requirements
- node.js v6.3.1 or newer
Installation
npm install Moneypal-sdk --save
or
yarn add Moneypal-sdk
Importing Moneypal SDK
JavaScript:
const MoneypalSDK = require("Moneypal-sdk").MoneypalSDK;
const Moneypal = new MoneypalSDK(privateKey, apiKey);
TypeScript:
import { MoneypalSDK } from "Moneypal-sdk";
const Moneypal = new MoneypalSDK(privateKey, apiKey);