curl --request GET \
--url https://api.dots.dev/api/v2/apps/{app_id}/ach-account \
--header 'Authorization: Basic <encoded-value>'
{
"mask": "<string>",
"name": "<string>"
}
Get the App’s ach account information.
curl --request GET \
--url https://api.dots.dev/api/v2/apps/{app_id}/ach-account \
--header 'Authorization: Basic <encoded-value>'
{
"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?