Sending a payout is as easy as sending a text
Create a Payout Link
How It Works
Create a Payout Link
Create a payout link through the dashboard or API. The only information you need is the amount.
Select a Delivery Method
Send the link yourself or let Dots send it for you via email or SMS.
User Claims the Payout Link
User claims the link and enters their bank information. Tax infomation is automatically collected based on the user’s location and payout amount.
Payout is Completed
The user selects their desired payout method from Dots' extensive list of supported payout methods and the payout is delivered efficiently.
Elevate your payouts
Contractors and Freelancers
Increase contractor loyalty by paying them faster and putting the control in their hands. Schedule a demo
Payout Power
Give sellers the choice in deciding how they want to be paid.
Staggered KYC
Delay the collection of SSN until required to increase trust.
Start Manually
Start with manual payouts and transition to automated payouts.
User Rewards
Quickly send users funds for completing tasks or winning games. Schedule a demo
Simplified Payments
Access global banking rails while still paying in USD.
Easy Compliance
Skip the complications—we'll handle your KYC and KYB for you.
Greater Choice
Pay in multiple rails to many countries, whether banking, paypal, or prepaid debit card.
Live Performers
Join Don't Tell Comedy and others in paying performers instantly without having to onboard them into your payroll system. Schedule a demo
Onboard Instantly
Be up and running in minutes and let your payees onboard themselves.
More Options
Provide access to more payout rails with links to Venmo, CashApp, and more.
Content Creators
Fire off payouts to your gen-z content creators instantly throught the payout methods that they use like Venmo, CashApp, and more. Schedule a demo
More Options
Provide access to more payout rails with links to Venmo, CashApp, and more while still being able to track and report on all payouts.
Easy Integration
Be up and running in minutes with just one, easy integratable API.
Minimal Code, Maximum Impact
With our payouts API you can drastically improve your payout options and skip the manual process of adding multiple payment processors—while still reaping the conversion benefits.
see docs1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
curl https://pls.senddotssandbox.com/api/payouts/create_payout_link \
-X POST \
-H "Authorization: Basic <TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"delivery": {
"method": "link"
}
"amount": 1000,
}'
response = {
"success": true,
"payout_link": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"link": "https://senddotssandbox.com/payout_link/dsfvytoehf3745bfm2k3244543fdf",
"original_amount": 1000,
"amount": 1000,
"status": "delivered",
"api_app_name": "Test App",
"payee": {
"first_name": null,
"last_name": null,
"email": null,
"country_code": null,
"phone_number": null
}
}
}