When we try to initiate micro-deposits on a source we get the requested resource was not found.
Hi @Kevin_Lott , do you have the ID of the funding source you’re attempting to initiate micro-deposits for?
We are making the call through the dwolla swagger library, all our other calls work, this is a new function we have not used before.
Function:
verifyMicroDepositsExist
ID:
c3a6b4f1-18c5-4e5c-9dc9-77c69c48cf05
Resource:
/funding-sources/c3a6b4f1-18c5-4e5c-9dc9-77c69c48cf05/micro-deposits
Error:
The requested resource was not found.
Debug Info
DwollaSwagger\ApiClient Object
(
[curl_timeout:protected] => 0
[user_agent:protected] => php-swagger-1.9.0
)
[host] => https://api.dwolla.com
Thanks! It looks like I’m seeing GETs in our logs to this endpoint but no POSTs to initiate micro-deposits. The request would look something like this:
<?php
// Using dwollaswagger - https://github.com/Dwolla/dwolla-swagger-php
$fundingSourceUrl = 'https://api.dwolla.com/funding-sources/c3a6b4f1-18c5-4e5c-9dc9-77c69c48cf05';
$fsApi = new DwollaSwagger\FundingsourcesApi($apiClient);
$fsApi->microDeposits(null, $fundingSourceUrl);
?>
This topic was automatically closed after 365 days. New replies are no longer allowed.