v1

latestOpenAPI 3.1.02026-07-226250251.5 KB
Transactions

Execute Batch Transfer

Execute multiple transfer payouts in a single batch operation.

post/v1/batch/transactions/commit

Request body

beneficiary_idstring uuid required
source_amountnumber

Amount in cents (e.g. 530 = $5.30). Minimum 500 cents.

destination_amountnumber
source_currencystring required
deduct_from'PREFUNDED_BALANCE' | 'LIQUIDATION_ADDRESS' required
remarksstring

Example request

[
  {
    "beneficiary_id": "d6ae4ea6-0482-47ab-a895-02e50ea6358b",
    "source_amount": 530,
    "destination_amount": 62000,
    "source_currency": "USD",
    "remarks": "Monthly salary payment"
  }
]

Response

Batch created successfully

Example response

{
  "data": {
    "id": "3b1d73c0-0000-0000-0000-51aa2461f1"
  }
}