Apps
Retrieve App ACH Account
Get the ACH account information for an app.
GET
/
v2
/
apps
/
{app_id}
/
ach-account
Authorization
Path
curl --request GET \
--url https://api.dots.dev/api/v2/apps/{app_id}/ach-account \
--header 'Authorization: <authorization>'
{
"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.
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 GET \
--url https://api.dots.dev/api/v2/apps/{app_id}/ach-account \
--header 'Authorization: <authorization>'
{
"mask": "<string>",
"name": "<string>"
}