Skip to content

Thin request-like interface for easy access to the Debitoor REST API from node.js.

Notifications You must be signed in to change notification settings

debitoor/node-debitoor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

debitoor npm version Dependency Status

This small module wraps request in order to provide easy access to the Debitoor REST API.

Usage

Install via npm:

npm install debitoor

Use it like you would use request. The main difference is that you only have to specify relative URLs and that authentication is handled for you. Just provide a valid access token and you're ready to go:

var access_token = 'your-token';

var debitoor = require('debitoor')(access_token);

debitoor('/customers/v1', function (error, response, body) {
	console.log(body);
});

API Documentation

The general Debitoor REST API documentaion can be found here: https://developers.debitoor.com

About

Thin request-like interface for easy access to the Debitoor REST API from node.js.

Resources

Stars

Watchers

Forks

Packages

No packages published