๐Find a Single Business BankAccount
Lookup and retrieve a single Consumer Bank Account by bank_account_id.
GET {{baseUrl}}/business/bank-accounts/:bank_account_id
Path Parameters
Name
Type
Description
bank_account_id*
String
The UUID for a Business Bank Account that gets generated and returned in either POST Create without Customer or POST Create with Customer response.
API Responses
{
"data": {
"id": "{{bankAccountId}}",
"customer_id": "{{customerId}}",
"type": "statement",
"bank": "absa",
"num_transactions": 0,
"last_updated": "2023-05-02T08:00:16.000000Z",
"first_transaction": null,
"last_transaction": null
}
}{
"data": {
"id": "{{bankAccountId}}",
"business_id": "{{businessId}}",
"type": "statement",
"bank": "fnb",
"num_transactions": 0,
"last_updated": "2023-05-25T10:56:17.000000Z",
"first_transaction": null,
"last_transaction": null
}
}Last updated