KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
Azlo-Node
★ 10
Open GitHub ↗
Node.js REST API Wrapper for Azlo Bank.
Download README (.md)
Explore Similar Repositories
var-packagist-search
:
Quickly thrown together code to scan popular Packagist libs for PHP's "var" keyword
slack-channel-manager
:
Slack Bot for private channel management in a public workspace.
awesome-nonprofit
:
A list of vendors that provide discounts for non-profit organizations
k8s-hands-on
:
No description available.
Learning-Angular-7
:
Learning Angular 7 [Video], published by Packt
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Azlo-Node
?
Download (.md)
# Azlo-Node A Node.js API wrapper for Azlo Bank. [Azlo](https://azlo.com) is a completely online business bank account backed by BBVA Compass. ## This repository is no longer active. [Azlo](https://www.cnbc.com/select/banking-options-for-freelancers-small-business-owners) 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. ```js 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 ```js azlo.accounts.list({ unmask: true }, (error, accounts) => { if (error) { console.log(error); } else { console.log(accounts); } }); ``` * See the [Examples](https://github.com/jaireddjawed/Azlo-Node/blob/master/examples.js) to list accounts & transactions ### Built With * [Request](https://www.npmjs.com/package/request) - Library used to make http calls