cURL
curl --request PUT \ --url https://api.dots.dev/api/v2/apps/{app_id}/ach-account \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "account_number": "<string>", "routing_number": "<string>", "account_type": "checking" } '
{ "mask": "<string>", "name": "<string>" }
Add an ACH account to an app for deposits.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
The ID of the app.
The bank account number.
The bank's ABA routing number.
The type of bank account.
checking
savings
OK
The last four digits of the bank account number.
The name of the bank account.
Was this page helpful?