paidy-node
v1.6.0
Published
Paidy Node is the simple and thin Paidy API wrapper library for Node.js
Downloads
1,599
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-node
or npm
npm i paidy-node
Usage
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',
},
}),
);