1.0.0 • Published 3 years ago

finicityapilib v1.0.0

Weekly downloads
49
License
MIT
Repository
github
Last release
3 years ago

FinicityAPILib

Installation

The SDK relies on Node Package Manager (NPM) being available to resolve dependencies. Once published you will need copy the folder finicityapilib in to your node_modules folder.

Usage

The following shows how import and use the controller:

  1. Import the module:

    var finicityapilib = require('finicityapilib');
  2. Configure any authentication parameters. For example:

    var config = finicityapilib.configuration;
    config.apikey = a_secret_key;
  3. Access various controllers by:

    var controller = finicityapilib.XYZ;
    controller.getItems(id, callback);