Resolve account details
This endpoint assists you in resolving the account holder's name for the given bank details to prevent erroneous disbursements.
post
Authorizations
Body
countrystring | nullableOptional
account_numberstring | nullableOptional
bank_codestring | nullableOptional
currencystring | nullableOptional
Responses
200
Success
application/json
post
POST /v1/banks/resolve-account HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 79
{
"country": "text",
"account_number": "text",
"bank_code": "text",
"currency": "text"
}
200
Success
{
"status": "success",
"message": "text",
"data": {
"country": "text",
"account_name": "text",
"account_number": "text",
"bank_name": "text",
"bank_code": "text"
},
"meta": {},
"errors": {
"ANY_ADDITIONAL_PROPERTY": [
"text"
]
},
"is_error": true
}
Last updated