โฌ†๏ธ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

NameTypeDescription

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.

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

Before: Available Account Record

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

Patch: Update the Account Number and Branch Code

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

After: Updated Account Record

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

Last updated