@lilianaa/nordigen-node
TypeScript icon, indicating that this package has built-in type declarations

2.0.0-6 • Public • Published

This package is (hopefully) temporary

@lilianaa/nordigen-node is just a temporary package, see https://github.com/nordigen/nordigen-node/pull/53

As the PR is waiting to be merged, this package is just available in the meantime.

Nordigen Node.js Library

This is official Node client library for GoCardless Bank Account Data.

For a full list of endpoints and arguments, see the docs.

Before starting to use API you will need to create a new secret and get your SECRET_ID and SECRET_KEY from the GoCardless Bank Account Data Portal.

Requirements

  • Node >= 12.0

Installation

Install library via npm:

npm install nordigen-node --save
# or
yarn add nordigen-node

Example application

Express example application can be found in example directory

Quickstart

// Get secretId and secretKey from bankaccountdata.gocardless.com portal and pass to NordigenClient or load from .env file
const client = new NordigenClient({
    secretId: process.env.SECRET_ID,
    secretKey: process.env.SECRET_KEY
});

// Generate new access token. Token is valid for 24 hours
const tokenData = await client.generateToken();

// Get access and refresh token
// Note: access_token is automatically injected to other requests after you successfully obtain it
const token = tokenData.access;
const refreshToken = tokenData.refresh;

// Exchange refresh token. Refresh token is valid for 30 days
const newToken = await client.exchangeToken({refreshToken: refreshToken});

// Use existing token
client.token = process.env.TOKEN;

// Get list of institutions
const institutions = await client.institution.getInstitutions({country: "LV"});

// Institution id can be gathered from getInstitutions response.
// Example Revolut ID
const institutionId = "REVOLUT_REVOGB21";

// Initialize new bank session
const init = await client.initSession({
    redirectUrl: "https://gocardless.com",
    institutionId: institutionId,
    referenceId: randomUUID()
})

// Get link to authorize in the bank
// Authorize with your bank via this link, to gain access to account data
const link = init.link;
// requisition id is needed to get accountId in the next step
const requisitionId = init.id;

After successful authorization with a bank you can fetch your data (details, balances, transactions)

Fetching account metadata, balances, details and transactions

// Get account id after completed authorization with a bank
const requisitionData = await client.requisition.getRequisitionById(requisitionId);
// Get account id from the list
const accountId = requisitionData.accounts[0];

// Instantiate account object
const account = client.account(accountId);

// Fetch account metadata
const metadata = await account.getMetadata();
// Fetch account balances
const balances = await account.getBalances();
// Fetch account details
const details = await account.getDetails();
// Fetch account transactions
const transactions = await account.getTransactions();
// Optional. You can filter transactions by specific date range
await account.getTransactions({dateFrom: "2021-12-01", dateTo: "2022-01-30"});

Premium endpoints

In order to access Premium API endpoints, please contact us at bank-account-data-support@gocardless.com

// country parameter can be omitted but when used you will get more precise results
const details = await account.getPremiumDetails('LV');
// date and country parameters are optional
const transactions = await account.getPremiumTransactions({
  dateFrom: '2021-12-01',
  dateTo: '2022-01-30',
  country: 'LV',
});

Support

For any inquiries please contact support at bank-account-data-support@gocardless.com or create an issue in repository.

Package Sidebar

Install

npm i @lilianaa/nordigen-node

Weekly Downloads

20

Version

2.0.0-6

License

MIT

Unpacked Size

317 kB

Total Files

24

Last publish

Collaborators

  • liliana1110