This section covers how to retrieve an Account's list of transfers. Transaction search is supported by passing in optional query string parameters such as: search
which represents a term to search on, correlationId
, startAmount
, endAmount
, startDate
, endDate
, and status
.
Note: You can only retrieve up to 10,000 transfers using the limit
and offset
query string parameters. To retrieve historical transactions that exceed that limit, startDate
and endDate
query string parameters must be used to further limit the search. For example, if item 10,000 has a date of 2021-01-01 the next request can be the following,
GET https://api.dwolla.com/accounts/{id}/transfers?search={term}&endDate=2021-01-01
GET https://api.dwolla.com/accounts/{id}/transfers
firstName
, lastName
, email
, businessName
, Customer Id, and Account Id. (/transfers?search=Doe
)startAmount
. Can optionally be used with endAmount
to specify an amount range.endAmount
. Can optionally be used with startAmount
to specify an amount range.YYYY-MM-DD
. Can optionally be used with endDate
to specify a date range.YYYY-MM-DD
. Can optionally be used with startDate
to specify a date range.pending
, processed
, failed
, or cancelled
.correlationId
was specified on a transfer or mass payment item.// Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node
var accountUrl =
"https://api-sandbox.dwolla.com/accounts/62e88a41-f5d0-4a79-90b3-188cf11a3966";
dwolla
.get(`${accountUrl}/transfers`)
.then((res) => res.body._embedded["transfers"][0].status); // => 'processed'
Use sandbox environment to test API requests.
All funds transfers made using the Dwolla Platform are performed by a financial institution partner, and any funds held in a Dwolla Balance are held by a financial institution partner. Learn more about our financial institution partners.