Banking

Run Bulk Account Name Enquiry

Validate multiple recipient bank accounts in a single request and return the resolved account names.

POST
/api/v1/banking/bulk-name-enquiry

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v1/banking/bulk-name-enquiry" \  -H "Content-Type: application/json" \  -d '{    "currency": "NGN",    "accounts": [      {        "account_number": "1234567890",        "bank_code": "000000"      }    ]  }'
{
  "requestId": "f006ad7b-096c-4254-8c7e-2d23a55b0b0e",
  "requestTimestamp": "2025-09-04 11:49:40",
  "message": "Bulk account name enquiry completed.",
  "statusCode": 200,
  "data": [
    {
      "accountNumber": "1234567890",
      "accountName": "John Doe",
      "bankCode": "000000",
      "sessionId": "999999118090260326113657535174973337"
    }
  ]
}
Empty
Empty

How is this guide?