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

Response

200 - application/json

Returns bank details

The response is of type object.