v1
latestOpenAPI 3.0.02026-07-2464438356.8 KBPayouts
Execute an end-user custodial Payout Request
Executes a Payout Request using an end-user custodial signature.
post/api/payouts/payout/end-user-custodial/execute/{id}
Path parameters
idstring uuid required
Payout request ID
Headers
on-behalf-ofstring required
Organization ID to act on behalf of
idempotency-keystring uuid
Optional UUID to safely retry requests without creating duplicate operations. Subsequent requests with the same key and identical body return the original cached response with an idempotency-replayed: true response header. Keys expire after 24 hours.
Request body
Example request
{
"signature": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}Response
Successfully executed Payout Request via an end-user custodial signature
Example response
{
"payouts": [
{
"amount": {
"tokenSymbol": "USDC"
},
"details": {
"feeTotal": {
"tokenSymbol": "USDC"
},
"fiatAmount": {
"fiatCurrencyCode": "USD"
},
"transactionFee": {
"tokenSymbol": "USDC"
}
},
"recipientInfo": {
"details": {
"details": {
"truncatedBankAccountNumber": "****1234"
}
}
}
}
]
}