paidy-node
v1.6.0
Published
Paidy Node is the simple and thin Paidy API wrapper library for Node.js
Readme

Paidy Node
Paidy Node is the simple and thin Paidy API wrapper library for Node.js that supports following features.
Installation
Install paidy-node using yarn
yarn add paidy-nodeor npm
npm i paidy-nodeUsage
import { Configuration, DefaultApi } from 'paidy-node';
const paidy = new DefaultApi(
new Configuration({
headers: {
Authorization: `Bearer ${process.env.PAIDY_SECRET_KEY}`,
'Paidy-Version': '2018-04-10',
},
}),
);