@quantix-ict/paynl
v1.0.0
Published
Package for PayNL (Quantix)
Downloads
5
Readme
PayNL client by Quantix
A library to use the PayNL API.
Installation and Usage
Installation:
npm i @quantix-ict/paynl
Usage:
const { Paynl } = require('@quantix-ict/paynl')
const paynl = new Paynl({
apiCode: 'AT-####-####',
apiToken: '<token>',
})
const data = await this.request({
endpoint: `/transactions/EX-####-####-####`,
method: 'GET',
})
of using import:
import { Paynl } from '@quantix-ict/paynl'
const paynl = new Paynl({
apiCode: 'AT-####-####',
apiToken: '<token>',
})
const data = await this.request({
endpoint: `/transactions/EX-####-####-####`,
method: 'GET',
})