- Payouts
- Send a payout
Payouts
Send a payout
POST
/api/api/v2/payouts/send_payout
client_id*
api_key*
curl --request POST \
--url https://api.senddotssandbox.com/api/api/v2/payouts/send_payout \
--header 'Authorization: Basic AUTH_VALUE'
{
"amount": 0,
"user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
"payee": {
"country_code": "string",
"phone_number": "string"
},
"delivery": {
"message": "string"
},
"notes": null,
"force_collect_compliance_information": true
}
Body
amount
number
user_id
string
payee
object
delivery
object
notes
Custom data that will be attached to the transaction when the recipient claims the link.
force_collect_compliance_information
boolean
Require the recipient to fill out compliance information (i.e. form 1099) when below the payout limit.
{
"amount": 0,
"user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
"payee": {
"country_code": "string",
"phone_number": "string"
},
"delivery": {
"message": "string"
},
"notes": null,
"force_collect_compliance_information": true
}