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

# Proposing Multiple Payments

> Request payments for multiple recipients at once

Besides being able to create [requests for single payments](/payments/single-payment), you can also create bulk payment requests to pay multiple recipients at once.

This is especially useful when you need to pay a large number of recipients with the same token, as it allows you to request all payments in a single request, saving you from having to create them separately.

<Warning>
  Payment requests can only be created by team members with the [Requestor](/governance/members-and-roles#requestor) role, and they require approval from team members with the [Finance](/governance/members-and-roles#finance) role before they can be executed.
</Warning>

***

## Bulk Payment Request

Navigate to the **`Payments`** section in the left sidebar, then click **`Bulk Payments`**.

<img src="https://mintcdn.com/neardev/q9hRPY5BOAnaV8kX/assets/docs/payments/bulk-payment-button.png?fit=max&auto=format&n=q9hRPY5BOAnaV8kX&q=85&s=093c549483bc8d8e64c892f00e477815" alt="Bulk Payment Button" width="1600" height="1080" data-path="assets/docs/payments/bulk-payment-button.png" />

You will need to specify in which token you want to pay the recipients - all recipients will be paid in the same token. Then, you will need to manually enter the payment details for each recipient or upload a `.csv` file with the information.

<img src="https://mintcdn.com/neardev/q9hRPY5BOAnaV8kX/assets/docs/payments/bulk-payment-request.png?fit=max&auto=format&n=q9hRPY5BOAnaV8kX&q=85&s=b5a7e09307327468c093506148e40e4c" alt="Bulk Payment Request" width="1402" height="1017" data-path="assets/docs/payments/bulk-payment-request.png" />

<br />

<Accordion title="Bulk Payment Format">
  The expected format is a list of recipients with their wallet address and the amount to be paid, e.g. if we want to pay `10.50 USDC` to `alice.near` and `21.34 USDC` to `bob.near`, you can manually provide the payment data in the **Provide Data** section as follows:

  ```
  alice.near, 10.50
  bob.near, 21.34
  ```

  Or download our <a href="https://raw.githubusercontent.com/NEAR-DevHub/trezu-docs/refs/heads/main/assets/files/bulk-payment-template.csv" onClick={(e) => { e.preventDefault(); fetch(e.currentTarget.href).then(r => r.blob()).then(b => { const a = document.createElement('a'); a.href = URL.createObjectURL(b); a.download = 'bulk-payment-template.csv'; a.click(); URL.revokeObjectURL(a.href); }); }}>template</a> and fill in the payment details, then upload the file in the **Upload File** section.
</Accordion>

***

## Reviewing the Request

Make sure to review the bulk payment request before submitting it. You can also add a comment to provide more context to the approvers.

<img src="https://mintcdn.com/neardev/q9hRPY5BOAnaV8kX/assets/docs/payments/bulk-payment-review.png?fit=max&auto=format&n=q9hRPY5BOAnaV8kX&q=85&s=fe04dbc78de1dee0ef56625cecea5d9d" alt="Bulk Payment Review" width="1600" height="1080" data-path="assets/docs/payments/bulk-payment-review.png" />

<Tip>
  After the bulk payment is approved and executed, you will be able to produce a [receipt](/payments/handling-requests).
</Tip>

<Warning>
  Make sure to select the right blockchain and enter the correct wallet addresses, as payments are irreversible.
</Warning>

***

## What's Next?

After submitting the payment request, it will be ready for the [Finance](/governance/members-and-roles#finance) team members to review and vote on the request.

<Check>
  Head to [Handling Payment Requests](/payments/handling-requests) to learn how to review and vote on payment requests.
</Check>
