Verify Account Number

Confirm that account number is valid before sending money

Validate account number

GET {{base_url}}/validate-acctname

Headers

NameTypeDescription

authorization*

PUBLIC KEY

Set value to Bearer PUBLIC_KEY

Request Body

NameTypeDescription

acctno*

String

bank account number

bankcode*

String

Bank code from the Bank list endpoint

{
    "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