Apps
Add App ACH Account
Add an ACH account to an app for deposits.
PUT
/
v2
/
apps
/
{app_id}
/
ach-account
Authorization
Path
Body
curl --request PUT \
--url https://api.dots.dev/api/v2/apps/{app_id}/ach-account \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"account_number": "<string>",
"account_type": "checking",
"routing_number": "<string>"
}'
{
"mask": "<string>",
"name": "<string>"
}
Authorizations
Authorization
string
headerrequiredBasic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Path Parameters
app_id
string
requiredThe ID of the app.
Body
application/json
account_number
string
requiredThe bank account number.
account_type
enum<string>
requiredThe type of bank account.
Available options:
checking
, savings
routing_number
string
requiredThe bank's ABA routing number.
Response
200 - application/json
mask
string
The last four digits of the bank account number.
name
string
The name of the bank account.
curl --request PUT \
--url https://api.dots.dev/api/v2/apps/{app_id}/ach-account \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"account_number": "<string>",
"account_type": "checking",
"routing_number": "<string>"
}'
{
"mask": "<string>",
"name": "<string>"
}