JSPM

kashflow-soap-api

0.0.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q21352F
  • License MIT

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

Package Exports

  • kashflow-soap-api

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (kashflow-soap-api) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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);
    });
});