Last updated 4 months ago
This endpoint assists you in resolving the account holder's name for the given bank details to prevent erroneous disbursements.
curl -L \ --request POST \ --url '/v1/banks/resolve-account' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "country": "text", "account_number": "text", "bank_code": "text", "currency": "text" }'
{ "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 }