mylapay-test
v1.0.9
Published
this is testing package for mylapay payments
Maintainers
Readme
Mylapay Payment SDK
Read up here for getting started and understanding the payment flow with Mylapay: https://www.mylapay.com
Installation
npm i mylapay-test --saveDocumentation
Documentation of Mylapay's API and their usage is available at https://www.mylapay.com
Basic Usage
Instantiate the Mylapay instance with key & secret. You can obtain the keys from the dashboard app (https://dashboard.mylapay.com/#/app/keys)
const Mylapay = require('mylapay-test');
var instance = new Mylapay({
key: 'YOUR_KEY_ID',
secret: 'YOUR_KEY_SECRET',
MerchantTxnID: string,
amount: number,
username: string,
email: string,
phone: string,
surl: string,
furl: string
});