v1

latestOpenAPI 3.0.12026-07-2679100267.2 KB
Transfers

Perform bank account lookup

You can use this endpoint to perform bank account lookup.

post/v1/transfers/bank/lookup

Headers

accountIdstring uuid required
Example:890022ce-bae0-45c1-9b9d-ee7872e6ca27

The parent accountId of the business.

Request body

accountNumberstring required

The account number to be looked up.

bankCodestring required

The bankCode of the bank the account number belongs to. This can be obtained from a call to /v1/transfers/banks

Example request

{
  "accountNumber": "0554772814",
  "bankCode": "053"
}

Response

OK - your request was successful.

codestring required

Response Code

descriptionstring required

Response description

Example response

{
  "code": "00",
  "description": "Success",
  "data": {
    "accountNumber": "0554772814",
    "accountName": "M.A Animashaun"
  }
}