1.0.0 • Published 3 years ago
@quantix-ict/paynl v1.0.0
PayNL client by Quantix
A library to use the PayNL API.
Installation and Usage
Installation:
npm i @quantix-ict/paynlUsage:
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',
})1.0.0
3 years ago