List and search transfers for an account
GET https://api-sandbox.dwolla.com/accounts/{{accountId}}/transfers
Retrieve an Account's list of transfers. Transaction search is supported by passing in optional querystring parameters such as: search
which represents a term to search on, startAmount
, endAmount
, startDate
, and endDate
.
Request parameters
Parameter | Data Type | Parameter Type | Required | Description |
---|---|---|---|---|
id | string | path | yes | Account unique identifier to get transfers for. |
search | string | query | no | A string to be matched with firstName , lastName , email , businessName , Customer Id, and Account Id. (/transfers?search=Smith ) |
startAmount | string | query | no | Only include transactions with an amount equal to or greater than startAmount . Can optionally be used with endAmount to specify an amount range. |
endAmount | string | query | no | Only include transactions with an amount equal to or less than endAmount . Can optionally be used with startAmount to specify an amount range. |
startDate | string | query | no | 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 | string | query | no | 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. |
limit | integer | query | no | Number of search results to return. Defaults to 25. |
offset | integer | query | no | Number of search results to skip. Used for pagination. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string | ||
Authorization | string |