POST/api/v2/banking/payouts/check

Payout Step 2: check the quoted payout before OTP approval.

Send the quote Id from POST /api/v2/banking/quotations as QuotationId. The returned CheckId is used in POST /api/v2/banking/payouts/initiate.

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
PayeeIdunknownYesLocal payee ID from the payee list endpoint. Local payee ID from GET /api/v2/banking/payees.
QuotationIdstringYesQuotation Id returned by POST /api/v2/banking/quotations. Quotation Id returned by POST /api/v2/banking/quotations.
AmountstringYesPayout amount as a decimal string.
CurrencystringYesPayout currency, usually the payee currency.
BalanceIdstringNoOptional provider balance or budget ID to fund the payout from. Optional provider balance or Equals Money budget ID used as funding source.
MemostringNoOptional memo/reference for the payout.
ReasonstringNoOptional payout reason.

Responses

200 — OK

Response 200 fields
FieldTypeRequiredDescription
CheckIdstringNoProvider check ID. Pass this as CheckId to POST /api/v2/banking/payouts/initiate.
PassbooleanNo
DetailMessagestringNo

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/check" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"PayeeId":"…","QuotationId":"…","Amount":"…","Currency":"…"}'

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