Skip to main content

Bank-Country

Maxime avatar
Written by Maxime
Updated over 4 months ago

Model

Tables

  • Country - list of countries

  • Bank - list of ASPSPs

Details

Bank

  • swiftBicCode- business code of a bank following ISO_9362 (https://en.wikipedia.org/wiki/ISO_9362)

  • logoUrlHash- the hash of logo image file uri (hash is used for caching resources)

  • country- an embedded object representing bank (see below)

  • migrateToBankId - used only for scraping to PSD2 migration workflow

  • isPisp - flag indicating if bank supports PIS

  • isPisForceAccount - flag indicating if the bank supports PIS with selecting debtor account after redirection or not

  • provider- an embedded object representing connector

    • providerId- an embedded object representing connector

    • provider - connector name

    • providerType - connector type (scraping/api/reverse)

    • dynamicDataPath- scraping only

    • dynamicDataRegex- scraping only

  • isAisForceAccount- flag indicating if the bank supports AIS with selecting account after redirection or not

Country

  • languageCode - language code according to ISO 639-1

  • currencyCode - currency code according to ISO 4217

  • dialCode - country code (e.g. +44)

  • flagUrl - url for image object

  • flagUrlHash - the hash of flag image file uri (hash is used for caching resources)

  • fullName - name of the country

  • isoCode - shoirter name of the country

  • alternativeISOCode - additional ISO code (if applicable)

{

"country": {

"languageCode": "string",

"currencyCode": "string",

"dialCode": "string",

"flagUrl": "string",

"flagUrlHash": "string",

"fullName": "string",

"isoCode": "string",

"alternativeISOCode": "string"

},

"migrateToBankId": 0,

"id": 0,

"name": "string",

"officialName": "string",

"logo": "string",

"color": "string",

"isPisp": true,

"isPisForceAccount": true,

"provider": {

"providerId": 0,

"provider": "string",

"providerType": "scraping",

"dynamicDataPath": "string",

"dynamicDataRegex": "string"

},

"isAisForceAccount": true

Did this answer your question?