1.0.8 • Published 6 years ago

erste-bank-client v1.0.8

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

erste-bank-client node js client

A node-js module for erste bank to retrieve transactions. It's based on the python version of https://github.com/angelol/erste-bank-client. Uses "George"'s API to retrieve data.

npm install erste-bank-client

How to use:

var ErsteBankClient = require('erste-bank-client');

var from = new Date();
from.setDate(from.getDay()-10);
var to = new Date();
var ebc = new ErsteBankClient({
    username: '',
    password: '',
    iban: 'AT6...',
    account_id: '' // provide to save one additional call 
});
ebc.getDataExport(from, to) 
.then(function(result) {
       console.log(result);
})
1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.1

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.0

7 years ago