curl --request GET \
--url https://api.sandbox.solidfi.com/v2/payments/counterparty/bank
{
"routing_number": "021214189",
"bank_name": "ConnectOne Bank",
"type": "aba",
"payment_methods": [
"ach",
"wire"
],
"address": {
"line1": "1365 Palisades Ave",
"line2": "",
"city": "Fort Lee",
"state": "NJ",
"country": "US",
"postal_code": "07024-5242"
}
}
Retrieve Bank Info
curl --request GET \
--url https://api.sandbox.solidfi.com/v2/payments/counterparty/bank
{
"routing_number": "021214189",
"bank_name": "ConnectOne Bank",
"type": "aba",
"payment_methods": [
"ach",
"wire"
],
"address": {
"line1": "1365 Palisades Ave",
"line2": "",
"city": "Fort Lee",
"state": "NJ",
"country": "US",
"postal_code": "07024-5242"
}
}
routing number type - aba or swift
aba
, swift
"aba"
bank routing number
"021214189"
Retrieve Bank Info
The response is of type object
.