New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

simplii

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simplii

API for Simplii Financial

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

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.

FAQs

Package last updated on 26 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts