This section outlines how to remove a funding source, both bank account and VAN
, by id. A removed funding source is soft deleted and can still be accessed when retrieved.
When a bank funding source with an unverified
status is removed, an attempt to re-add it within 48 hours of the initial created date will re-activate the removed funding source and maintain the same id
. Removing and re-adding a VAN
however, will create a different id
.
If a funding-source has an outgoing transfer, we recommend not removing it until the transfer has been exported. Doing so will result in the cancellation of the transfer. Determining if a transfer has been exported or not can be done by retrieving the transfer resource and looking for the cancel
link in the response -- if the transfer has exported, the cancel
link is removed.
If a funding source has an incoming transfer, we recommend not removing it until the transfer has been processed
. If the recipient Customer has multiple funding sources attached, doing so will result in the funds processing to a randomly chosen bank funding source. If the recipient is a Verified Customer type with only one bank funding source attached, removing it prior to an incoming transfer processing will result in the funds settling to the balance funding source rather than the intended bank funding source.
POST https://api.dwolla.com/funding-sources/{id}
true
to remove the associated funding source.var fundingSourceUrl =
"https://api-sandbox.dwolla.com/funding-sources/692486f8-29f6-4516-a6a5-c69fd2ce854c";
var requestBody = {
removed: true,
};
dwolla.post(fundingSourceUrl, requestBody);
var fundingSourceUrl =
"https://api-sandbox.dwolla.com/funding-sources/62c88abb-96cb-4f1e-8ca9-7f45b5308d16";
var requestBody = {
removed: true,
};
dwolla.post(fundingSourceUrl, requestBody);
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.