curl --request POST \
--url 'https://share-ddn.formless.xyz/v1#payouts' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": "1",
"method": "payouts",
"params": {
"idempotency_key": "unique-payout-key-123",
"recipient_type": "smart_contract",
"recipient_id": "7a2ab0d5-27d8-482f-becf-0ac3217e0b1a",
"amount": {
"value": 10,
"currency": "USD"
}
}
}'