POST
/
api
/
service
/
banks
/
details
JavaScript
import Ivy from '@getivy/node-sdk';

const client = new Ivy();

const bank = await client.banks.retrieve({ id: 'id' });

console.log(bank.id);
{
  "id": "<string>",
  "name": "<string>",
  "logo": "<string>",
  "market": [
    "AF"
  ],
  "currencies": [
    "EUR"
  ],
  "group": "<string>",
  "url": "<string>",
  "default": true,
  "test": true,
  "capabilities": [
    "ais"
  ],
  "supportedPaymentSchemes": [
    "SEPA_INSTANT"
  ]
}

Body

application/json
id
string
required

The id is a unique identifier of the bank within Ivy.

Response

200 - application/json

Returns bank details

id
string
required

Unique identifier of the bank.

name
string
required

Name of the bank.

market
enum<string>[]
required
currencies
enum<string>[]
required
default
boolean
required

Whether the bank is a default bank.

test
boolean
required

Whether the bank is a test bank.

supportedPaymentSchemes
enum<string>[]
required

The payment schemes supported by the bank.

The logo in the form of an URL

group
string
url
string

The URL of the bank's website.

capabilities
enum<string>[]

The capabilities of the bank.