@quantix-ict/paynl
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

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',
})

Readme

Keywords

Package Sidebar

Install

npm i @quantix-ict/paynl

Weekly Downloads

1

Version

1.0.0

License

ISC

Unpacked Size

11.7 kB

Total Files

8

Last publish

Collaborators

  • quantix-ict