๐Ÿ”ŽFind a Single Business BankAccount

Lookup and retrieve a single Consumer Bank Account by bank_account_id.

Get Single BankAccount

GET {{baseUrl}}/business/bank-accounts/:bank_account_id

Search for a Business Bank Account record using the search parameter bank_account_id.

Path Parameters

NameTypeDescription

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.

```postman_json
{
    "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
    }
}
```

Last updated