Skip to main content
POST
/
v1
/
batch
/
transactions
/
commit
cURL
curl --request POST \
  --url https://{base_url}/v1/batch/transactions/commit \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "beneficiary_id": "<string>",
    "source_amount": "<string>",
    "source_currency": "<string>",
    "deduct_from": "PREFUNDED_BALANCE",
    "remarks": "<string>"
  }
]
'
{
  "data": {
    "batch_id": "16940644-438d-4134-ab19-d195dda46124"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.fin.com/llms.txt

Use this file to discover all available pages before exploring further.

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

Headers

Authorization
string
default:Bearer {{client_access_token}}
required

Body

application/json
beneficiary_id
string
required
source_amount
string
required
source_currency
string
required
deduct_from
enum<string>
required
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

Response

201 - application/json

Created

data
object