1.0.1 • Published 9 years ago

billogram v1.0.1

Weekly downloads
11
License
ISC
Repository
-
Last release
9 years ago

billogram

Promise based Billogram api client for node.js

Usage

var billogram = require('billogram')({
  username: 'my username',
  password: 'my secret'
})
billogram.getCustomer(1).then(function (customer) {
 console.log("Got customer response: ", customer)
})

billogram.getCustomer(customer_no)

billogram.createCustomer(customerObject)

billogram.updateCustomer(customer_no, customerProperties)

billogram.createInvoice(invoiceObject)