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_currency": "USD",
    "deduct_from": "PREFUNDED_BALANCE",
    "source_amount": 530,
    "destination_amount": 62000,
    "remarks": "Monthly salary payment"
  }
]
'
{
  "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
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
Required range: x >= 500
Example:

530

destination_amount
number
Example:

62000

remarks
string
Example:

"Monthly salary payment"

Response

Batch created successfully

data
object