Bank
Retrieve a Bank
Getting Started
Charge
Capabilities
Subaccount
Banking
Bank
Retrieve a Bank
Retrieve a bank object by its id. The id is a unique identifier of the bank within Ivy.
POST
/
api
/
service
/
banks
/
details
curl --request POST \
--url https://api.sand.getivy.de/api/service/banks/details \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
{
"id": "<string>",
"name": "<string>",
"logo": "<string>",
"market": [
"AF"
],
"currencies": [
"EUR"
],
"group": "<string>",
"test": true,
"default": true,
"capabilities": [
"pis"
],
"supportedPaymentSchemes": [
"SEPA_INSTANT"
]
}
Body
application/json
Response
200 - application/json
Returns bank details
The response is of type object
.
curl --request POST \
--url https://api.sand.getivy.de/api/service/banks/details \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
{
"id": "<string>",
"name": "<string>",
"logo": "<string>",
"market": [
"AF"
],
"currencies": [
"EUR"
],
"group": "<string>",
"test": true,
"default": true,
"capabilities": [
"pis"
],
"supportedPaymentSchemes": [
"SEPA_INSTANT"
]
}