> ## Documentation Index
> Fetch the complete documentation index at: https://docs-embeddedfinance.embedly.ng/llms.txt
> Use this file to discover all available pages before exploring further.

# Bulk Transfer Name Enquiry

> This endpoint enables you to validate all account numbers and the account names for bulk transfers.

# Bulk Transfer Account Name Enquiry

<ParamField body="accounts" type="array" required>
  <ParamField body="accountNumber" type="string" required>
    The account number to be validated, **Example:** `8500014302`
  </ParamField>

  <ParamField body="bankCode" type="string" required>
    The NIP institutional code of the bank, **Example:** `000001`
  </ParamField>

  <ParamField body="sessionId" type="string" required>
    A 30 digit unique sessionId generated by your application, \*\***Example:**
    `123456789012345678901234567890`
  </ParamField>
</ParamField>

<ResponseExample>
  ```json 207 Multi Status theme={null}
  {
      "results": [
          {
              "status": "success",
              "data": {
                  "bankCode": "999127",
                  "accountName": "BUNCH DILLON",
                  "accountNumber": "8500014687",
                  "sessionId": "261028074451559360583474092704"
              }
          },
          {
              "status": "success",
              "data": {
                  "bankCode": "999127",
                  "accountName": "LEKAN EMBEDDED",
                  "accountNumber": "8500014807",
                  "sessionId": "890596848111632629913731225500"
              }
          }
      ]
  }
  ```

  ```json Unauthorized theme={null}
  {
  	"statusCode": 401,
  	"message": "No Authentication found!",
  	"error": "Unauthorized"
  }
  ```
</ResponseExample>
