Retrieve all Bank accounts for a Buyer
Overview
This route will retrieve all bank accounts for a requested buyer.
Resource Access
GET https://<hostname>/buyer/v1/buyer/{id}/bank
Example Request
GET https://<hostname>/buyer/v1/buyer/adcf5909-2afe-5078-a2db-525cc21a7981/bank
Example Response
{
"recordCount": 2,
"records": [
{
"id": "6e64bd942d00337064fcc560179f10cd12ba624d8b981520ffe2bd8fb25bae5f",
"bankName": "BANK OF AMERICA N.A.",
"defaults": [
"MCK",
"CHK"
],
"accountType": "savings",
"accountNumber": "****5678",
"routingNumber": "****9593"
},
{
"id": "76db0f09fba4bf17270dedcd58428c9199078a4946b4a3ba396cbe8f259b7198",
"bankName": "WELLS FARGO BANK, NA",
"accountType": "savings",
"accountNumber": "****7878",
"routingNumber": "****0248"
},
],
"totalRecords": 3
}
Updated 3 days ago