DotsDocs
Payouts

Send a Payout

Send a payout to a person when you know their phone number or user id. If the user has a Dots acconut, the funds will delivered according to their saved prefernces. Otherwise, they will be sent a Payout Link to onboard and recieve funds.

POST
/v2/payouts/send-payout

Send a payout to a person when you know their phone number or user id. If the user has a Dots acconut, the funds will delivered according to their saved prefernces. Otherwise, they will be sent a Payout Link to onboard and recieve funds.

AuthorizationBasic <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v2/payouts/send-payout" \  -H "Content-Type: application/json" \  -d '{    "amount": 1  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "created": "2019-08-24T14:15:22Z",  "link": "http://example.com",  "amount": 0,  "status": "funds_pending",  "payee": {    "first_name": "string",    "last_name": "string",    "email": "user@example.com",    "country_code": "string",    "phone_number": "string"  },  "delivery": {    "method": "link",    "email": "user@example.com",    "country_code": "string",    "phone_number": "string"  },  "tax_exempt": true,  "claimed_user_id": "66f08eaa-a101-4a26-b1a7-7241439dcee8",  "flow_id": "0746f03b-16cc-49fb-9833-df3713d407d2",  "transfer_id": "d4a2d8dd-7def-4545-a062-761683b9aa05",  "memo": "string",  "metadata": "string",  "description": "string",  "accounting_data": {    "quickbooks_account_id": 0,    "quickbooks_class_id": 0  },  "created_by_email": "user@example.com",  "funding_source": "dots_balance"}