Get ACH Accounts
Endpoint: BASE_URL/bass/customer-ach-accounts
Name: account name.
Status: account status.
LastFourDigits: account's last four digits.
Category: ACH accounts are of the
outboundAch
type.Type: account type (checking, savings, moneyMarket).
Linker example response:
{
"statusCode": 200,
"data": {
"accounts": [
{
"id": "601",
"name": "Plaid Checking",
"status": "active",
"lastFourDigits": "1533",
"routingNumber": "021000021",
"category": "outboundAch",
"type": "checking"
},
{
"id": "407",
"name": "John Smith",
"status": "active",
"lastFourDigits": "0002",
"routingNumber": "268547716",
"category": "outboundAch",
"type": "savings"
}
]
}
}
Last updated
Was this helpful?