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. The account’s owner must match the compliance information submitted.
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>"
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
The ID of the app.
OK
The response is of type object
.
Was this page helpful?