freshbooks-node

0.0.1 • Public • Published

freshbooks-node

=============== A simple node library for Freshbooks that does not require libxmljs

Install

  npm install freshbooks-node

Usage

Request

var Freshbooks = require('freshbooks-node');
var freshbooks = new Freshbooks(APPLICATION_NAME, APPLICATION_TOKEN, USER_AGENT)
freshbooks.call('invoice.create',
    {
        invoice:
        {   client_id: 32,
            status: 'draft',
            lines: {
                line:
                {
                    name: 'Tulips',
                    description: 'A type of flower',
                    unit_cost: 10,
                    quantity: 2
                }
            }
        }
    }, function(err, json) {
        if (err) {
            console.error(err);
        }
        console.log(JSON.stringify(json, null, 4));
    });

Response

{
    "response": {
        "invoice_id": "73869"
    }
}

Docs

http://developers.freshbooks.com/

Enjoy!

  • thallium205

Readme

Keywords

none

Package Sidebar

Install

npm i freshbooks-node

Weekly Downloads

0

Version

0.0.1

License

MIT

Last publish

Collaborators

  • thallium205