GET
/
customers
/
{id}
/
transfers
cURL
GET https://api-sandbox.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295/transfers
Accept: application/vnd.dwolla.v1.hal+json
Authorization: Bearer pBA9fVDBEyYZCEsLf/wKehyh1RTpzjUj5KzIRfDi0wKTii7DqY
{
  "_links": {},
  "_embedded": {
    "transfers": [
      {
        "_links": {},
        "id": "15c6bcce-46f7-e811-8112-e8dd3bececa8",
        "status": "pending",
        "amount": {
          "value": "42.00",
          "currency": "USD"
        },
        "created": "2018-12-03T22:00:22.970Z",
        "clearing": {
          "source": "standard",
          "destination": "same-day"
        },
        "metadata": {
          "paymentId": "12345678",
          "note": "Payment for completed work Dec. 1"
        },
        "achDetails": {
          "source": {
            "addenda": {
              "values": [
                "ABC123_AddendaValue"
              ]
            }
          },
          "destination": {
            "addenda": {
              "values": [
                "ZYX987_AddendaValue"
              ]
            }
          }
        },
        "rtpDetails": {
          "destination": {
            "remittanceData": "ABC_123 Remittance Data"
          }
        },
        "correlationId": "8a2cdc8d-629d-4a24-98ac-40b735229fe2",
        "processingChannel": {
          "destination": "real-time-payments"
        }
      }
    ]
  },
  "total": 100
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

Accept
enum<string>
default:application/vnd.dwolla.v1.hal+json
required

The media type of the response. Must be application/vnd.dwolla.v1.hal+json

Available options:
application/vnd.dwolla.v1.hal+json

Path Parameters

id
string
required

Customer's unique identifier

Query Parameters

A string to search on fields firstName, lastName, email, businessName

startAmount
string

Only include transactions with an amount equal to or greater than startAmount

endAmount
string

Only include transactions with an amount equal to or less than endAmount

startDate
string

Only include transactions created after this date. ISO-8601 format YYYY-MM-DD

endDate
string

Only include transactions created before this date. ISO-8601 format YYYY-MM-DD

status
string

Filter on transaction status. Possible values are pending, processed, failed, or cancelled

correlationId
string

A string value to search on if correlationId was specified for a transaction

limit
string

Number of search results to return. Defaults to 25

offset
string

Number of search results to skip. Use for pagination

Response

200
application/vnd.dwolla.v1.hal+json

successful operation

The response is of type object.