Retrieve a list of funding sources that belong to an Account. By default, all funding sources are returned unless the removed
querystring parameter is set to false
in the request.
GET https://api.dwolla.com/accounts/{id}/funding-sources
Parameter | Required | Type | Description |
---|---|---|---|
id | yes | string | Account's unique identifier. |
removed | no | boolean | Filter removed funding sources. Defaults to true . Set to false to filter out removed funding sources from list (i.e. - /accounts/{id}/funding-sources?removed=false). |
HTTP Status | Message |
---|---|
403 | Not authorized to list funding sources. |
404 | Account not found. |
// Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node
var accountUrl =
"https://api-sandbox.dwolla.com/accounts/ca32853c-48fa-40be-ae75-77b37504581b";
dwolla
.get(`${accountUrl}/funding-sources`)
.then((res) => res.body._embedded["funding-sources"][0].name); // => 'ABC Bank Checking'
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.