⬆️Update Account

A Customers Bank Account details may be updated if required.

Update Account Record

PATCH {{baseUrl}}/account-verifications/:account_verification_id

The Customers Bank Account record can be changed/updated whilst maintaining the same account_verification_id.

Request Body

Name
Type
Description

account_number

String

The Account Number for the Bank Account you would like to verify.

account_holder

String

The name of the Account Holder of the Bank Account that you would like to verify.

bank

String

The name of the bank that the end-user/customer banks with. Each bank has a "slug" which you will have to use here. Please see this list of slugs for the available banks.

account_type

String

The type of account that you would like to verify. The accepted options for this field are: Savings, Current, Transmission.

branch_code

String

The Branch Code for the Bank Account that you would like to verify. Universal Branch Codes are also accepted.

Status Codes

{
    "data": {
        "id": "{{accountVerificationId}}",
        "bank": "ABSA",
        "account_holder": "Miss KJ Hancock",
        "account_number": "62938037012",
        "account_type": "Current",
        "branch_code": "250655"
    }
}

Example 1 - Updating Account Number & Branch Code

Before:

{
    "data": {
        "id": "{{accountVerificationId}}",
        "bank": "nedbank",
        "account_holder": "MR MA Bowren",
        "account_number": "1234926726",
        "account_type": "Current",
        "branch_code": "198765"
    }
}

Patch:

{
    "account_number": "1234567891"
    "branch_code": "198777" 
}

After:

{
    "data": {
        "id": "{{accountVerificationId}}",
        "bank": "nedbank",
        "account_holder": "MR MA Bowren",
        "account_number": "1234567891",
        "account_type": "Current",
        "branch_code": "198777"
    }
}

Last updated