โฌ†๏ธUpdate Business BankAccount

A Business Bank Account Record may be updated if required.

Update Business BankAccount

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

The Business Bank Account record can be changed/updated whilst maintaining the same bank_account_id. The Bank Account types include online and statement.

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.

Headers

NameTypeDescription

Content-Type*

application/json

Request Body

NameTypeDescription

bank

String

The commercial bank that the business has a bank account with.

Business Banking is only available for Absa, FNB, Nedbank, Standard Bank and Capitec.

type

String

This field determines the method that the end-user wants to make use of to collect transactions and bank statements. Currently we only support "statement" for business bank accounts.

```postman_json
{
    "data": {
        "id": "{{bankAccountId}}",
        "customer_id": "{{customerId}}",
        "type": "online",
        "bank": "nedbank"
    }
}
```

Last updated