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": "d6ae4ea6-0482-47ab-a895-02e50ea6358b",
    "source_amount": "100.50",
    "source_currency": "USD",
    "deduct_from": "PREFUNDED_BALANCE",
    "remarks": "Monthly salary payment"
  }
]
'
{
  "data": {
    "batch_id": "16940644-438d-4134-ab19-d195dda46124"
  }
}

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_amount
string
required

Amount to transfer

Example:

"100.50"

source_currency
string
required

Source currency code

Example:

"USD"

deduct_from
enum<string>
required

Source of funds for the transfer

Available options:
PREFUNDED_BALANCE,
LIQUIDATION_ADDRESS
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