Account Detail LookUp
https://sandboxapi.bitnob.co/api/v1/account-detail-lookup (opens in a new tab)
Body Parameters
Parameter | type | Required |
---|---|---|
countryCode Defaults to 234 | string | ✅ |
accountNumber phone number associated with the account | string | ✅ |
Request
payouts-mobile-transfers/ Account detail lookup [GET]
curl --location --request POST 'https://sandboxapi.bitnob.co/api/v1/mobile-payments/account-detail-lookup' \
--header 'Authorization: Bearer sk.xxxxxxx.xxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"bankCode": "033",
"type": "BANK",
"accountNumber": "2081021857"
}'
Responses
🟢 200 - Result example
{
"status": true,
"message": "account detail lookup successful",
"data": {
"accountNumber": "2081021857",
"accountName": "JOHN DOE"
}
}
Last updated on