Verify Account

Before sending money to a customer, you need to ensure the customer’s account details are correct. This is to ensure you aren’t sending money to the wrong person. We are providing you with this API in order to achieve this.

Make a POST request to this endpoint

https://baseURL/fintech/api/v1/transfer/validateAccountNumber

Body Parameters

{
  "accountNumber": "1700313889",
  "bankCode": "044"
}

Response

{
    "status": true,
    "message": "Success",
    "data": {
        "account_name": "aishatu Sadiq",
        "account_number": "1700313889"
    }
}