⬆️Update Business BankAccount

A Business Bank Account Record may be updated if required.

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

Headers

Name
Type
Description

Content-Type*

application/json

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.

Request Body

Name
Type
Description

bank

String

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

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.

API Responses

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

Last updated