List and search transfers for a customer
GET https://api-sandbox.dwolla.com/customers/{{VCRCustomerId}}/transfers
Retrieve a white label Customer’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 | Customer 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 |