1.0.1 • Published 6 years ago

simplii v1.0.1

Weekly downloads
2
License
ISC
Repository
-
Last release
6 years ago

Simplii Financial API

Getting Started

Install the simplii library:

npm install --save simplii
var Simplii = require('simplii');

var simplii = new Simplii(<cardNumber>, <password>);

// Wait for authentication
simplii.on('ready', function () {
  
   // Fetch accounts
   var accounts = simplii.getAccounts(callback)

   // Fetch transactions for the last month for the given accountId
   var transactions = simplii.getTransactions(accountId, callback);

})

Notes

Currently, only the last 30 days of transactions are downloaded. It is possible to modify the transaction query string to download different periods.

Simplii Financial only allows transaction downloads for the last 12 months.