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" ] }
Retrieve a bank object by its id. The id is a unique identifier of the bank within Ivy.
Returns bank details
The response is of type object.
object
Was this page helpful?