curl --request GET \
--url https://api.dots.dev/api/v2/users/{user_id}/payout-methods \
--header 'Authorization: Basic <encoded-value>'
[
{
"id": "<string>",
"platform": "ach",
"description": "<string>",
"mask": "<string>",
"email": "<string>",
"phone_number": "<string>",
"cash_tag": "<string>",
"country": "<string>",
"currency": "<string>",
"rtp_enabled": true
}
]
Get a user’s connected payout methods.
curl --request GET \
--url https://api.dots.dev/api/v2/users/{user_id}/payout-methods \
--header 'Authorization: Basic <encoded-value>'
[
{
"id": "<string>",
"platform": "ach",
"description": "<string>",
"mask": "<string>",
"email": "<string>",
"phone_number": "<string>",
"cash_tag": "<string>",
"country": "<string>",
"currency": "<string>",
"rtp_enabled": true
}
]
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Id of the user to fetch
OK
Array of payout methods registered to the user.
Was this page helpful?