Payouts
Create Payout Quote
Creates a short-lived, provider-backed quote for a payout. No funds move until the returned quote_token is submitted to POST /payouts. An Idempotency-Key header is required.
post/payouts/quotes
Headers
Idempotency-Keystring
Example:d9105228-4a08-46b1-8b91-42fed586d383
A unique key that makes this request safe to retry. See Idempotent requests.
Request body
Example request
{
"account_id": "biz_xxxxxxxxxxxxxx",
"amount": 6762.41,
"currency": "eur",
"payout_method_id": "potk_xxxxxxxxxxxxxx",
"speed": "standard"
}Response
payout quote created
Example response
{
"amount": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
},
"destination_amount": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
},
"exchange_rate": 4.13978443,
"expires_at": "2026-01-01T12:00:00.000Z",
"fee": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
},
"id": "pout_aed_quote",
"net_amount": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
},
"object": "payout_quote",
"quote_token": "signed-payout-quote"
}Changes
Changed in 1 of the 41 revisions of this API.1
- ○
endpoint added
endpoint-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○