This API updates the Bank Verification Number (BVN) for a specific clientRequest Body#
The request should be a JSON object containing the following fields:Field Name | Type | Required | Description |
---|
bvn | string | TRUE | The Bank Verification Number (BVN) to be updated. |
clientId | integer | TRUE | Unique identifier of the client. |
Response Body#
The response confirms the client ID of the updated BVN record.Field Name | Type | Description |
---|
clientId | integer | Unique identifier of the client whose BVN was updated |
Request
Body Params application/json
{
"bvn": "11111",
"clientId": 70
}
Request samples
curl --location --request POST '/core/account/updatebvn' \
--header 'Content-Type: application/json' \
--data-raw '{
"bvn": "11111",
"clientId": 70
}'
Responses
application/json Modified at 2025-03-19 15:02:08