POST/api/v2/banking/payouts/initiate

Payout Step 3: send the OTP for a checked payout.

Send the CheckId from POST /api/v2/banking/payouts/check. The VerificationToken returned here must be verified through POST /api/v2/banking/otp/verify before calling POST /api/v2/banking/payouts.

Authentication

Send your API key in the x-api-key header on every request.

Parameters

Request parameters
FieldTypeRequiredDescription
userId (query)unknownNo

Request body

application/json

Request body fields
FieldTypeRequiredDescription
CheckIdstringYesCheckId from POST /api/v2/banking/payouts/check. If the quote is refreshed on the OTP screen, send the latest quote/order ID here. CheckId returned by POST /api/v2/banking/payouts/check. When refreshing quotes during OTP, send the latest quote/order ID here.
QuoteRequestIdstringNoQuoteRequestId returned by POST /api/v2/banking/quotations. QuoteRequestId returned by POST /api/v2/banking/quotations.
PayeeIdunknownYesLocal payee ID from the payee list endpoint. Local payee ID from GET /api/v2/banking/payees.
AmountstringYesPayout amount as a decimal string.
CurrencystringYesPayout currency, usually the payee currency.
FromCurrencystringNoCurrency to fund the payout from. When omitted, the payout currency is used. This must reflect the currency selected by the caller, because an Equals Money budget can hold multiple currencies under the same budget ID.
BalanceIdstringNoOptional provider balance or budget ID to fund the payout from. Optional provider balance or Equals Money budget ID used as funding source.

Responses

200 — OK

Response 200 fields
FieldTypeRequiredDescription
SuccessbooleanNoIndicates whether OTP initiation succeeded.
VerificationTokenstringNoToken for this payout approval. Verify it with the OTP endpoint, then pass it to POST /api/v2/banking/payouts.
MessagestringNo
ExpiresAtstring (date-time)No
RecipientNamestringNo
AmountunknownNo
CurrencystringNo

400 — Bad Request

Response 400 fields
FieldTypeRequiredDescription
MessagestringNo
CodestringNo
StatusunknownNo
ValidationErrorsobjectNo
DetailsstringNo

401 — Unauthorized

Response 401 fields
FieldTypeRequiredDescription
MessagestringNo
CodestringNo
StatusunknownNo
ValidationErrorsobjectNo
DetailsstringNo

404 — Not Found

Response 404 fields
FieldTypeRequiredDescription
MessagestringNo
CodestringNo
StatusunknownNo
ValidationErrorsobjectNo
DetailsstringNo

500 — Internal Server Error

Response 500 fields
FieldTypeRequiredDescription
MessagestringNo
CodestringNo
StatusunknownNo
ValidationErrorsobjectNo
DetailsstringNo

Example request

curl -X POST "https://{base_url}/api/v2/banking/payouts/initiate" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"CheckId":"…","PayeeId":"…","Amount":"…","Currency":"…"}'

This page is generated from the live OpenAPI specification and always matches the current API.