Skip to content
This repository has been archived by the owner on Jan 28, 2022. It is now read-only.

jaireddjawed/Azlo-Node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Azlo-Node

A Node.js API wrapper for Azlo Bank. Azlo is a completely online business bank account backed by BBVA Compass.

This repository is no longer active. Azlo is closed.

Prequistes

  • Install the Azlo-Node npm library.
npm i --save azlo-node

Usage

The package needs to be configured with your API key which can be found on the Azlo website.

const azlo = require('azlo-node')('YOUR_API_KEY');

// Will show all of the user's accounts with full numbers shown
const accounts = await azlo.accounts.list({
  unmask: true
});

You also can use a callback instead

azlo.accounts.list({ unmask: true }, (error, accounts) => {
  if (error) {
    console.log(error);
  } else {
    console.log(accounts);
  }
});
  • See the Examples to list accounts & transactions

Built With

  • Request - Library used to make http calls

Releases

No releases published

Packages

No packages published