Verify BVN for User
PATCH /api/v1/users/{userId}/bvn/{bvn}/verify
Description
Verify the BVN (Bank Verification Number) for a specific user.
Path Parameters
| Name | Type | Description |
|---|---|---|
bvn | string | The Bank Verification Number (path) |
userId | string | The user ID (path) |
Query Parameters
| Name | Type | Description |
|---|---|---|
dob | string | Date of birth to validate against the BVN (optional query parameter, e.g., 1990-01-20) |
Example
PATCH /api/v1/users/{userId}/bvn/{bvn}/verify?dob=1990-01-20
Content-Type: application/json
Response Code: 200 - OK
Description
No specific details provided in the response.
Method: PATCH
>http://your-api-url/api/v1/users/{userId}/bvn/{bvn}/verify
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
| userid | string |
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request PATCH \
--url /api/v1/users/{userId}/bvn/{bvn}/verify \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!