Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 395 Bytes

File metadata and controls

17 lines (13 loc) · 395 Bytes

Kashflow API

Wrapper around the Kashflow SOAP API to make it more node-like

Usage

var Kashflow = require('kashflow-api');
Kashflow.login = { UserName: process.env.KASHFLOW_USERNAME, Password: process.env.KASHFLOW_PASSWORD };

Kashflow.client(function(err, client) {
    client.GetCustomers({
    }, function(err, result){
        console.log(err, result);
    });
});