Last updated 5 months ago
This endpoint assists you in resolving the account holder's name for the given bank details to prevent erroneous disbursements.
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" }
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 }