Skip to main content
POST
/
v1
/
transactions
/
transfer-payout
/
settle
Settle a Transfer
curl --request POST \
  --url https://sandbox.api.fin.com/v1/transactions/transfer-payout/settle \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transfer_id": "9ac6872b-8904-4ea5-beb7-d5a936ffee10"
}
'
{
  "data": {
    "transaction_id": "9ac6872b-8904-4ea5-beb7-d5a936ffee10"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
transfer_id
string
required

Unique identifier for the transfer to settle

Example:

"9ac6872b-8904-4ea5-beb7-d5a936ffee10"

Response

Transfer settled successfully

data
object
required