node-maventa
v0.0.4
Published
Maventa service client
Downloads
37
Readme
Introduction
Node.js client for Maventa SOAP api.
Installation
npm install node-maventa
Usage
var Maventa = require('node-maventa');
var client = new Maventa(vendorApiKey, apiKey, companyUUID);
client.helloWorld().then(function(resp) {
console.log(resp);
}).done();Implemented methods call atm
- hello_world:
client.helloWorld() - company_show:
client.companyShow() - invoice_list_inbound_between_dates:
client.invoiceListInboundBetweenDates(startDateObj, endDateObj) - inbound_invoice_show:
client.inboundInvoiceShow(id, downloadAttachments, xmlFormat) - invoice_create:
client.invoiceCreate(invoiceData) - invoice_show:
client.invoiceShow(id, downloadAttachments, xmlFormat)
Method calls will we implemented as I need them myself. Contributions as pull requests welcome.
License
The MIT license
