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
.
If a funding source has an outgoing transfer (ACH debit / pull), removing it will not result in the cancellation of any pending transfer(s). In other words, even if a funding source is removed, all pending transfers will continue to export and process to their respective destinations. If you wish to cancel any pending transfers that haven’t yet been exported, you will need to do so by calling the endpoint for cancelling a 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 been exported, the cancel
link is removed.
If a funding source has an incoming transfer (ACH credit / push), we recommend not removing it until the transfer has been processed
. Removing it will result in the cancellation of any pending transfer(s). If the recipient is a Verified Customer type, 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}
Parameter | Required | Type | Description |
---|---|---|---|
id | yes | string | id of funding source to delete. |
removed | yes | string | Specify a value of true to remove the associated funding source. |
HTTP Status | Message |
---|---|
404 | Funding source not found. |
POST https://api-sandbox.dwolla.com/funding-sources/692486f8-29f6-4516-a6a5-c69fd2ce854c
Content-Type: application/vnd.dwolla.v1.hal+json
Accept: application/vnd.dwolla.v1.hal+json
Authorization: Bearer pBA9fVDBEyYZCEsLf/wKehyh1RTpzjUj5KzIRfDi0wKTii7DqY
{
"removed": true
}
...
HTTP 200 OK
{
"_links": {
"self": {
"href": "https://api-sandbox.dwolla.com/funding-sources/692486f8-29f6-4516-a6a5-c69fd2ce854c",
"type": "funding-source"
}
},
"id": "692486f8-29f6-4516-a6a5-c69fd2ce854c",
"status": "verified",
"type": "bank",
"bankAccountType": "checking",
"name": "Test bank account",
"created": "2016-06-08T21:37:30.000Z",
"removed": true,
"fingerprint": "4cf31392f678cb26c62b75096e1a09d4465a801798b3d5c3729de44a4f54c794"
}
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.