Identity Verification
Verify Account Name
Verify Account Number
Get the account name on an account number.
Endpoint: /account_name_verify
Method: POST
Header
Param | Type | Required? | Decription |
---|---|---|---|
authorization | string | Yes | Set value to Bearer SECRET_KEY |
content-type | string | Yes | Set value to application/json |
Body Param
Param | Type | Required? | Decription |
---|---|---|---|
bank_code | string | Yes | account bank code (check bank list) |
account_number | string | Yes | account number |
Sample Post
curl https://api.budpay.com/api/v2/account_name_verify
-H "Authorization: Bearer YOUR_SECRET_KEY"
-H "Content-Type: application/json"
-d '{
"bank_code": "000013",
"account_number": "0050883605"
}'
-X POST
Sample Response
{
"success": true,
"message": "Account name retrieved",
"data": "OYENIYI TOLULOPE OYEBIYI"
}