Socket
Socket
Sign inDemoInstall

debitoor

Package Overview
Dependencies
47
Maintainers
4
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    debitoor

Small request wrapper that makes it easy to work with the debitoor.com API


Version published
Maintainers
4
Install size
3.68 MB
Created

Readme

Source

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]https://developers.debitoor.com

Keywords

FAQs

Last updated on 05 Sep 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc