1.5.21 • Published 4 years ago

moneypal-sdk v1.5.21

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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

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);