DotsDocs
Users

Add a Payout Method

Add a payout method to the user. Payout method can be one of `paypal`, `venmo`, `ach`, or `cash_app`. Each method has different required parameters.

PUT
/v2/users/{user_id}/payout-methods

Add a payout method to the user. Payout method can be one of paypal, venmo, ach, or cash_app. Each method has different required parameters.

AuthorizationBasic <token>

In: header

Path Parameters

user_id*string

Id of the user to fetch

Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X PUT "https://example.com/v2/users/497f6eca-6276-4993-bfeb-53cbbbba6f08/payout-methods" \  -H "Content-Type: application/json" \  -d '{    "platform": "ach",    "routing_number": "123456789",    "account_number": "123456789",    "account_type": "checking"  }'

{  "id": "acc_dfsf983kkjdsf",  "platform": "ach",  "account_number": "123456789",  "routing_number": "123456789",  "account_type": "checking"}