Verify Account Number
Confirm that account number is valid before sending money
Validate account number
GET
{{base_url}}/validate-acctname
Headers
Name
Type
Description
authorization*
PUBLIC KEY
Set value to Bearer PUBLIC_KEY
Request Body
Name
Type
Description
acctno*
String
bank account number
{
"status": true,
"account_name": "AKINDELE CHIOMA HASSAN",
"msg": "Account name resolved"
}
Take a look at how you might do this:
curl --location --request GET 'https://api.oneappgo.com/v1/validate-acctname?acctno=0123456789&bankcode=000013' \
--header 'Authorization: Bearer PUBLIC_KEY'
Sample Response
{
"status": true,
"account_name": "AKINDELE CHIOMA HASSAN",
"msg": "Account name resolved"
}
Last updated
Was this helpful?