> ## 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.

# Business bulk transfer

> This endpoint enables your businesses make bulk-transfer to various accounts.

# Business bulk transfer

<ParamField body="orgId" type="string" required>
  The orgId of the Org initiating the transfer, **Example:**
  `f7dfc5ab-4a4e-4941-8114-7a140d4c03b2`
</ParamField>

<ParamField body="businessId" type="string" required>
  The unique identifier of the business initiating the transfer, **Example:**
  `63632ad2-cb9b-4ab4-acfa-d71510e3de25`
</ParamField>

<ParamField body="generalNarration" type="string" required>
  The narration for the bulk transfer, **Example:** `April Salary Payments`
</ParamField>

<ParamField body="payouts" type="array" required>
  <ParamField body="accountName" type="string" required>
    The name of the beneficiary account holder, \*\***Example:** `Vivian Vixen`
  </ParamField>

  <ParamField body="accountNumber" type="string" required>
    The beneficiary account number, **Example:** `8500014302`
  </ParamField>

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

  <ParamField body="amount" type="number" required>
    The amount in Naira to be transferred, **Example:** 1000
  </ParamField>

  <ParamField body="narration" type="string" required>
    The narration for the transaction, **Example:** `Funding`
  </ParamField>

  <ParamField body="reference" type="string" required>
    The reference for the transaction, **Example:** `27348h2e223`
  </ParamField>
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
      "statusCode": 200,
      "status": "success",
      "data": {
          "message": "Bulk payout is being processed",
          "bulkBatchId": "a852e318-478d-420f-9fd1-63fa0cbf03f6"
      }
  }
  ```

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

  ```json Insufficient funds theme={null}
  {
      "data": {
          "message": "Unable to complete transfer because you do not have sufficient funds.",
          "error": {
              "statusCode": 400,
              "status": "error",
              "message": "Unable to complete transfer because you do not have sufficient funds."
          }
      }
  }
  ```
</ResponseExample>
