johnballantyne / qbws

A Node.js web service for QuickBooks Desktop Web Connector
MIT License
38 stars 26 forks source link

qbws

npm version

This sample is a Node.js web service application that communicates with QuickBooks via QBWebConnector. The sample focuses primarily on demonstrating how to setup all web service web methods to run against QBWebConnector and does not focus on any particular use case. For simplicity, it sends three request XMLs: CustomerQuery, InvoiceQuery and BillQuery.

Status

This project replicates the functionality of the ASP.NET web service found in the QBSDK. Unfortunately that means some things are hard coded that should not be, and other things are left unimplemented. Eventually, qbws will diverge from that C# example to serve less of an SDK example and more as a reliable utility.

Usage

Install the package using npm install qbws. The following code is all you need to run the service:

var qbws = require('qbws');
qbws.run();

Documentation

The QuickBooks Web Connector Programmer's Guide is a very useful resource to understand how the Web Connector operates and how to write a custom web service to interact with it.

API documentation for qbws is available here. Many of that information is taken directly from the QBWC Programmer's Guide.

Changelog

v0.2.1

v0.2.0

Next Milestones

Feature Wishlist