nordigen_integration 2.0.0
nordigen_integration: ^2.0.0 copied to clipboard
Dart client and data models for the GoCardless Bank Account Data (formerly Nordigen) PSD2 API.
nordigen_integration #
Null-safe Dart client and data models for the GoCardless Bank Account Data API, formerly the Nordigen EU PSD2 account information service.
For API concepts and credentials, see the GoCardless Bank Account Data quick-start guide.
Contents #
Usage Steps #
-
Register and create user secrets as described in the quick-start guide.
-
Initialize
NordigenAccountInfoAPIwith the credentials from step 2. -
Call any of the
NordigenAccountInfoAPIClass methods to directly interact with Nordigen Server's endpoints while having the internal requests and relevant headers abstracted, based on your need. -
Utilize any of the available Data Classes to modularly and sufficiently store and process the information during any of the API usage steps. The Data Classes have functionality to be constructed
fromMap()and to be easily converted backtoMap()as well as to be serialized, at any point.
Example Usage #
import 'package:nordigen_integration/nordigen_integration.dart';
Future<void> main() async {
/// Step 1
final NordigenAccountInfoAPI apiInterface =
await NordigenAccountInfoAPI.fromSecret(secretID: 'secret_id', secretKey: 'secret_key');
/// Step 2 and then selecting the first Bank/Institution
final Institution firstBank =
(await apiInterface.getInstitutionsForCountry(countryCode: 'gb')).first;
/// Step 3
final EndUserAgreementModel endUserAgreementModel =
await apiInterface.createEndUserAgreement(
maxHistoricalDays: 90,
accessValidForDays: 90,
institutionID: firstBank.id,
);
/// Step 4
final RequisitionModel requisition = await apiInterface.createRequisitionAndBuildLink(
agreement: endUserAgreementModel.id,
institutionID: firstBank.id,
redirect: 'http://www.yourwebpage.com/',
reference: 'exampleRef42069666',
);
/// Open and validate in [link] and proceed with other functionality.
print('Validate: ${requisition.link}');
}
API Documentation #
Available Methods #
-
NordigenAccountInfoAPI({required String accessToken})(class constructor)Call it with the
accessTokengenerated using user secrets from the quick-start guide to access API features.Analogous to step 1 of the Bank Account Data quick-start guide.
-
static Future<NordigenAccountInfoAPI> fromSecret({required String secretID, required String secretKey})(static convenience method to generate interface using Secrets)Call it with
secretIDandsecretKeyparameters from the user's GoCardless Bank Account Data credentials.Returns a
Futurethat resolves to the initializedNordigenAccountInfoAPIobject using the Access Token that was generated using the secrets.Analogous to step 1 of the Bank Account Data quick-start guide.
-
static Future<Map<String, dynamic>> createAccessToken({required String secretID, required String secretKey})Call it with
secretIDandsecretKeyparameters from the user's GoCardless Bank Account Data credentials.Returns a
Futurethat resolves to aMap<String, dynamic>containing the information about the Access Token that was generated using the secrets. -
getInstitutionsForCountry({required String countryCode})Gets the Institutions (Banks) in the Country represented by the given two-letter
countryCode(ISO 3166).Analogous to step 2 of the Bank Account Data quick-start guide.
-
createEndUserAgreement({required String institutionID, int maxHistoricalDays = 90, int accessValidForDays = 90, List<String> accessScope = const <String>['balances', 'details', 'transactions']})Create an End User Agreement for the Institution identified by
institutionID, with an account access period ofaccessValidForDaysandmaxHistoricalDaysof transaction history (90 days by default), and return the resultingEndUserAgreementModel.Analogous to step 3 of the Bank Account Data quick-start guide.
-
acceptEndUserAgreement({required String endUserAgreementID, required String ipAddress, required String userAgent})Accepts the End User Agreement identified by
endUserAgreementIDand returns aFutureresolving to the resultingEndUserAgreementModel.Accepts the user agreement using given
userAgentandipAddress. This determine whether you have permission to accept the Agreement or not. Will throw a Error Code 403 (You do not have permission to perform this action) otherwise. -
createRequisitionAndBuildLink({required String redirect, required String institutionID, String? agreement, required String reference, String? userLanguage})Create a Requisition for the given
institutionIDand returns aFutureresolving to the resultingRequisitionModel.referenceis additional layer of unique ID. Should match Step 3 if done.redirectis the link where the end user will be redirected after finishing authentication in institution.agreementis the identifier of the agreement from Step 3 anduserLanguageis the language code of the language used in verification.Analogous to step 4 of the Bank Account Data quick-start guide.
-
getRequisitionUsingID({required String requisitionID})Gets the Requisition identified by
requisitionID. -
getEndUserAccountIDs({required String requisitionID})Gets the Account IDs of the User for the Requisition identified by
requisitionID.Analogous to step 5 of the Bank Account Data quick-start guide.
-
getAccountDetails({required String accountID})Gets the details of the bank account identified by
accountID. The account model follows the GoCardless endpoint schema.Analogous to step 6 of the Bank Account Data quick-start guide for account details.
-
getAccountTransactions({required String accountID})Gets the Transactions of the Bank Account identified by
accountIDas aMap<String, List<TransactionData>>with keys'booked'and'pending'representing List of Booked and pending transactions respectively.Analogous to step 6 of the Bank Account Data quick-start guide for account transactions.
-
getAccountBalances({required String accountID})Gets the balances of the bank account identified by
accountIDas aFuture<List<Balance>>.Analogous to step 6 of the Bank Account Data quick-start guide for account balances.
There are also various other methods for implementing POST, GET and DELETE requests across various endpoints in Nordigen Server, which are self explanatory:
-
getinstitutionUsingID({required String institutionID}) -
getEndUserAgreementUsingID({required String endUserAgreementID}) -
getEndUserAgreementTextUsingID({required String endUserAgreementID}) -
getEndUserAgreements({int limit = 100, int offset = 0}) -
deleteEndUserAgreementUsingID({required String endUserAgreementID}) -
getRequisitions({int limit = 100, int offset = 0,}) -
getRequisitionUsingID({required String requisitionID}) -
deleteRequisitionUsingID({required String requisitionID}) -
getAccountMetaData({required String accountID})
Available Data Classes #
Refer to the GoCardless Bank Account Data endpoint reference for the upstream schemas.
-
Institution({required String id, required String name, String bic = '', int transactionTotalDays = 90, required List<String> countries, String logoURL = ''})Institution (Bank) Data Model for Nordigen. Contains the
idof the institution, itsname,bic,transactionTotalDays, thecountriesassociated with the institution and institution's logo as a URLlogoURLto it, if any. -
EndUserAgreementModel({required String id, String created, int maxHistoricalDays = 90, int accessValidForDays = 90, List<String> accessScope = const <String>['balances', 'details', 'transactions'], String? accepted, required String institutionID}):End-user Agreement Data Model for Nordigen. Contains the
idof the Agreement, itscreatedtime string,accepted, the number ofmaxHistoricalDaysandaccessValidForDays, and theaccessScopeandinstitutionIDrelevant to the Agreement. -
RequisitionModel({required String id, required String created, required String redirectURL, RequisitionStatus status = const RequisitionStatus(short: '', long: '', description: ''), required String institutionID, String agreement, required String reference, List<String> accounts = const <String>[], String userLanguage='EN', required String link}):Requisition Data Model for Nordigen. Contains the
idof the Requisition,createdtimestamp String, itsstatus, associated end-useragreement, thelinkwhich is to be opened for verification, theredirectURLto which it should redirect,referenceID if any,accountsassociated, and the associatedinstitutionID.RequisitionStatus({required String short, required String long, required String description})contains a short status, a long status and a description of the status. -
AccountMetaData({required String id, String created, String? lastAccessed, String iban, String institutionIdentifier, String status = ''})Account metadata model. Contains the bank accountid,createdandlastAccessedtimestamps,iban,status, and theinstitutionIdentifieridentifying its institution. -
AccountDetails({String? id, String? iban, String? msisdn, required String currency, String? ownerName, String? name, String? displayName, String? product, String? cashAccountType, String? status, String? bic, String? linkedAccounts, String? usage, String? details, List<Balance>? balances, List<String>? links}):Bank account details model. Refer to the GoCardless endpoint reference for the complete schema.
-
TransactionData({required String id, String? debtorName, Map<String, dynamic>? debtorAccount, String? bankTransactionCode, String bookingDate = '', String valueDate = '', required String transactionAmount, String? remittanceInformationUnstructured = '', ...}):Transaction data model. Refer to the GoCardless endpoint reference for the complete schema.
-
Balance({required AmountData balanceAmount, required String balanceType, bool? creditLimitIncluded, String? lastChangeDateTime, String? referenceDate, String? lastCommittedTransaction})Balance Data Model for Nordigen. Contains
balanceAmountof Transaction, itsbalanceType, whether itscreditLimitIncluded, itslastChangeDateTimeandreferenceDateasStringand thelastCommittedTransaction.Refer to the GoCardless endpoint reference for the complete schema and available balance types.
-
AmountData({required String amount, required String currency})It is a simple Class that holds the transaction
amountand thecurrencytype, both as required parameters.
Contributing #
See the contribution guidelines to contribute to the package.
Dependencies #
- Dart, for the Dart SDK which this obviously runs on.
- http, is used for making API calls to the Nordigen Server Endpoints with proper response and error handling.
Vote of Thanks #
-
In case of any bugs, reach out to me at @Dhi13man or file an issue
-
Big thanks to contributors, including @tolik505, @antoineraulin, @stantemo and @c-louis. Contribution is welcome, and makes my day brighter
-
The first release of this package was sponsored by Cashtic. Show them some love! This package would not otherwise be possible
General Information #
This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.
For help getting started with Flutter, view the online documentation, which offers tutorials,samples, guidance on mobile development, and a full API reference.