Skip to main content
POST
/
v1
/
batch
/
transactions
/
commit
Execute Batch Transfer
curl --request POST \
  --url https://sandbox.api.fin.com/v1/batch/transactions/commit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "beneficiary_id": "ee925c1e-78b8-4346-948a-87990d6c4670",
    "destination_amount": 62000,
    "source_currency": "USD",
    "deduct_from": "PREFUNDED_BALANCE",
    "remarks": "BDT, auto settle false"
  },
  {
    "beneficiary_id": "ee925c1e-78b8-4346-948a-87990d6c4670",
    "source_amount": 230,
    "source_currency": "USD",
    "deduct_from": "PREFUNDED_BALANCE",
    "remarks": "BDT, auto settle false"
  }
]
'
{
  "data": {
    "id": "3b1d73c0-0000-0000-0000-51aa2461f1"
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain token from /v1/oauth/token endpoint

Body

application/json
beneficiary_id
string<uuid>
required

Unique identifier for the beneficiary

Example:

"d6ae4ea6-0482-47ab-a895-02e50ea6358b"

source_currency
string
required

Source currency code

Example:

"USD"

deduct_from
enum<string>
required

Source of funds for the transfer. Note: Only PREFUNDED_BALANCE transactions are eligible for refunds if they fail.

Available options:
PREFUNDED_BALANCE,
LIQUIDATION_ADDRESS
source_amount
number

Amount to deduct from the source in minor units (e.g., cents). Minimum 500 minor units. Mutually exclusive with destination_amount — exactly one must be provided.

Required range: x >= 500
Example:

530

destination_amount
number

The precise amount to be settled to the destination, in minor units. Mutually exclusive with source_amount — exactly one must be provided.

Example:

62000

remarks
string

Any remarks for the compliance team or notes for the transaction. If passing remarks are supported for a corridor then the system will automatically pass it along with the transaction

Example:

"Monthly salary payment"

Response

Batch created successfully

data
object