Skip to main content
POST
/
v1
/
batch
/
transactions
/
commit
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": 530,
    "source_currency": "USD",
    "deduct_from": "PREFUNDED_BALANCE",
    "remarks": "Monthly salary payment"
  }
]
'
{
  "data": {
    "id": "3b1d73c0-0000-0000-0000-51aa2461f1"
  }
}
This endpoint can only be used with beneficiaries created with auto_settlement set to true.
Amount Specification:
  • Each transaction must include exactly one of source_amount or destination_amount (not both)
  • source_amount: Minimum 500 cents (e.g. 500 = $5.00)
  • Only PREFUNDED_BALANCE transactions are eligible for refunds if they fail

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain token from Issue a Token endpoint

Body

application/json
beneficiary_id
string<uuid>
required
Example:

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

source_currency
string
required
Example:

"USD"

deduct_from
enum<string>
required
Available options:
PREFUNDED_BALANCE,
LIQUIDATION_ADDRESS
source_amount
number

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

Required range: x >= 500
Example:

530

destination_amount
number
Example:

62000

remarks
string
Example:

"Monthly salary payment"

Response

Batch created successfully

data
object