A lightweight library that allows easy communication with the Polish Payu API v2_1.
Install it via npm:
npm install nodejs-payu-sdk --save
Use the built-in methods:
var Payu = require('nodejs-payu-sdk');
var payu = new Payu(clientId, clientSecret, posId, key, environment);
payu.createOrder({ ... })
.then((res) => { })
.catch((err) => { });
- getShopData()
- getOrder(orderId)
- getOrderTransactions(orderId)
- createOrder(order)
- cancelOrder(orderId)
- refundOrder(orderId, amount, description)
- amount(optional): empty means full refund
- description(optional)
- verifyNotification(json, headers)