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
Parameter | Required | Type | Description |
---|---|---|---|
id | yes | string | Account unique identifier to get transfers for. |
search | no | string | A string to search on fields: firstName , lastName , email , businessName , Customer Id, and Account Id. (/transfers?search=Doe ) |
startAmount | no | string | Only include transactions with an amount equal to or greater than startAmount . Can optionally be used with endAmount to specify an amount range. |
endAmount | no | string | Only include transactions with an amount equal to or less than endAmount . Can optionally be used with startAmount to specify an amount range. |
startDate | no | string | Only include transactions created after this date. ISO-8601 format: YYYY-MM-DD . Can optionally be used with endDate to specify a date range. |
endDate | no | string | Only include transactions created before than this date. ISO-8601 format: YYYY-MM-DD . Can optionally be used with startDate to specify a date range. |
status | no | string | Filter results on transaction status. Possible values: pending , processed , failed , or cancelled . |
correlationId | no | string | A string value to search on if a correlationId was specified on a transfer or mass payment item. |
limit | no | integer | Number of search results to return. Defaults to 25. |
offset | no | integer | Number of search results to skip. Used for pagination. |
HTTP Status | Message |
---|---|
404 | Account not found. |
GET https://api.dwolla.com/accounts/62e88a41-f5d0-4a79-90b3-188cf11a3966/transfers
Accept: application/vnd.dwolla.v1.hal+json
Authorization: Bearer pBA9fVDBEyYZCEsLf/wKehyh1RTpzjUj5KzIRfDi0wKTii7DqY
...
{
"_links": {
"self": {
"href": "https://api-sandbox.dwolla.com/accounts/62e88a41-f5d0-4a79-90b3-188cf11a3966/transfers",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
},
"first": {
"href": "https://api-sandbox.dwolla.com/accounts/62e88a41-f5d0-4a79-90b3-188cf11a3966/transfers?&limit=25&offset=0",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
},
"last": {
"href": "https://api-sandbox.dwolla.com/accounts/62e88a41-f5d0-4a79-90b3-188cf11a3966/transfers?&limit=25&offset=0",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
}
},
"_embedded": {
"transfers": [{
"_links": {
"cancel": {
"href": "https://api-sandbox.dwolla.com/transfers/14c6bcce-46f7-e811-8112-e8dd3bececa8",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
},
"source": {
"href": "https://api-sandbox.dwolla.com/funding-sources/12a0eaf9-9561-468d-bdeb-186b536aa2ed",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "funding-source"
},
"self": {
"href": "https://api-sandbox.dwolla.com/transfers/14c6bcce-46f7-e811-8112-e8dd3bececa8",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
},
"funded-transfer": {
"href": "https://api-sandbox.dwolla.com/transfers/15c6bcce-46f7-e811-8112-e8dd3bececa8",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
},
"destination": {
"href": "https://api-sandbox.dwolla.com/funding-sources/84c77e52-d1df-4a33-a444-51911a9623e9",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "account"
}
},
"id": "14c6bcce-46f7-e811-8112-e8dd3bececa8",
"status": "pending",
"amount": {
"value": "42.00",
"currency": "USD"
},
"created": "2018-12-03T22:00:22.980Z",
"clearing": {
"source": "standard"
},
"individualAchId": "IDOWBKVE"
}, {
"_links": {
"cancel": {
"href": "https://api-sandbox.dwolla.com/transfers/15c6bcce-46f7-e811-8112-e8dd3bececa8",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
},
"self": {
"href": "https://api-sandbox.dwolla.com/transfers/15c6bcce-46f7-e811-8112-e8dd3bececa8",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
},
"source": {
"href": "https://api-sandbox.dwolla.com/accounts/62e88a41-f5d0-4a79-90b3-188cf11a3966",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "account"
},
"source-funding-source": {
"href": "https://api-sandbox.dwolla.com/funding-sources/12a0eaf9-9561-468d-bdeb-186b536aa2ed",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "funding-source"
},
"funding-transfer": {
"href": "https://api-sandbox.dwolla.com/transfers/14c6bcce-46f7-e811-8112-e8dd3bececa8",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
},
"destination": {
"href": "https://api-sandbox.dwolla.com/customers/d295106b-ca20-41ad-9774-286e34fd3c2d",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "customer"
},
"destination-funding-source": {
"href": "https://api-sandbox.dwolla.com/funding-sources/500f8e0e-dfd5-431b-83e0-cd6632e63fcb",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "funding-source"
}
},
"id": "15c6bcce-46f7-e811-8112-e8dd3bececa8",
"status": "pending",
"amount": {
"value": "42.00",
"currency": "USD"
},
"created": "2018-12-03T22:00:22.970Z",
"clearing": {
"source": "standard"
}
}]
},
"total": 2
}
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.