Skip to main content
POST
/
v1
/
api
/
transactions
/
commit
Commit a retail payout transaction from an accepted quote
curl --request POST \
  --url https://sandbox.api.eqxpay.io/v1/api/transactions/commit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "quote_id": "<string>",
  "beneficiary_id": "<string>",
  "otp_token": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
quote_id
string
required

Quote ID to commit into a transaction

beneficiary_id
string
required

Beneficiary ID to receive the payout

otp_token
string

OTP token for step-up authentication if required

Response

Created