openfin-ts
v1.0.1
Published
TypeScript FinTS implementation.
Downloads
33
Maintainers
Readme
openfin-ts
Typescript compatible fints implementation
Install
//npm
npm install --save openfin-ts
//yarn
yarn add openfin-ts
Example
import { FinTSClient } from 'openfin-ts';
const client = new FinTSClient("12345",
"http://testbank.com/hbci",
"customerId",
"1234pin");
try {
await client.connect();
const transactions = await client.getTransactions(client.konten[0].sepaData, null, null);
transactions.forEach(transaction => {
//Do things with transactions
});
await client.close();
} catch (err) {
//handle errors
}
For more examples see the tests in /test