This section covers how to retrieve a funding source, both bank account and VAN
, by id.
GET https://api.dwolla.com/funding-sources/{id}
Parameter | Required | Type | Description |
---|---|---|---|
id | yes | string | id of funding source to retrieve. |
HTTP Status | Message |
---|---|
404 | Funding source not found. |
// Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node
var fundingSourceUrl =
"https://api-sandbox.dwolla.com/funding-sources/49dbaa24-1580-4b1c-8b58-24e26656fa31";
dwolla.get(fundingSourceUrl).then((res) => res.body.name); // => "Test checking account"
GET https://api.dwolla.com/funding-sources/{id}
Parameter | Required | Type | Description |
---|---|---|---|
id | yes | string | id of funding source to retrieve. |
HTTP Status | Message |
---|---|
404 | Funding source not found. |
// Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node
var fundingSourceUrl =
"https://api-sandbox.dwolla.com/funding-sources/e6d68efb-c49b-43db-8867-e1ca58c6ee8c";
dwolla.get(fundingSourceUrl).then((res) => res.body.name); // => "Test checking account"
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.