Counterparties
Retrieve Bank Info
Getting Started
Master Accounts
Sub Account Holders
Sub Accounts
Counterparties
Card Holders
Cards
Transactions
- GETList all Transactions
- POSTSub Ledger a Transaction
- POSTOriginate an Intra Account Push
- POSTOriginate an Intra Account Pull
- POSTOriginate an ACH Push
- POSTOriginate an ACH Pull
- POSTOriginate a Domestic Wire
- POSTOriginate an International Wire
- POSTOriginate an RTP Push
- POSTOriginate a FedNow Push
- POSTOriginate a Debit Card Push
- POSTOriginate a Debit Card Pull
- POSTOriginate a Check Send
- POSTOriginate a Check Deposit
- GETRetrieve a Transaction
- PATCHUpdate a Transaction
Attachments
Webhooks
Counterparties
Retrieve Bank Info
Retrieve Bank Info
GET
/
v2
/
payments
/
counterparty
/
bank
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"
}
}
Query Parameters
routing number type - aba or swift
Available options:
aba
, swift
Example:
"aba"
bank routing number
Example:
"021214189"
Response
200
application/json
Retrieve Bank Info
The response is of type object
.
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"
}
}