Skip to content
/ Paynl Public
forked from SpoonX/Paynl

A pay.nl API convenience layer for nodeJS.

Notifications You must be signed in to change notification settings

Ocramius/Paynl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Paynl

This is a very simple (both built, and to use) module to communicate with the PayNL API.

Installation

Super simple. Just do the following:

npm install paynl --save

Usage

Usage is pretty straight forward. There aren't that many methods, which is what makes this module so easy to use.

No handshake

If you don't need to use methods that require a handshake, you can create a new instance like so:

var pay = require('paynl');

var pay = new Pay();

pay.invoke('Validate/getPayServerIps/v1').done(function(response) {
  console.log(response);
});

Handshake

If you wish to use methods that require authentication you must instantiate Paynl with params.

AccountId and token (recommended)

You can authenticate using your API token.

var pay = require('paynl');

var pay = new Paynl({
  accountId: '1234',
  token    : '7110eda4d09e062aa5e4a390b0a572ac0d2c0220'
});

pay.invoke('Session/getPaymentOptions/v2', {
  programId : 1234,
  websiteId : 1234
}).then(function(response) {
  console.log(response);
}, function(error) {
  console.log('We got an error!', error);
});

Username, password and companyId

It's also possible to login using your credentials.

var pay = require('paynl');

var pay = new Paynl({
  username : 'YOUR_USERNAME',
  password : 'YOUR_PASSWORD',
  companyId: 'YOUR_COMPANY_ID'
});

pay.invoke('Session/getPaymentOptions/v2', {
  programId : 1234,
  websiteId : 1234
}).then(function(response) {
  console.log(response);
}, function(error) {
  console.log('We got an error!', error);
});

API

To check out all possible API methods go to the pay.nl API docs.

Note: You can omit the ip-address. This module adds it for you.

About

A pay.nl API convenience layer for nodeJS.

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages

  • JavaScript 100.0%