Hello!
Any good API call actually exists to “press” the Process Bank Transfers button on the UAT programmatically? I shouldn’t have to manually login and press it every time I need some testing transactions to go through.
Hello!
Any good API call actually exists to “press” the Process Bank Transfers button on the UAT programmatically? I shouldn’t have to manually login and press it every time I need some testing transactions to go through.
@yakovivanov, An API call does exist! POST to https://api-sandbox.dwolla.com/sandbox-simulations with in empty request body; using the access token of the Account you want to simulate bank transfer processing for. If the account manages White Label Customers in the API then all related bank transfers will be processed for those account types as well. i.e.
POST https://api-sandbox.dwolla.com/sandbox-simulations
Accept: application/vnd.dwolla.v1.hal+json
Content-Type: application/json
Authorization: Bearer {Your access token}
Oh nice! Appreciate it!
Wow, this is great. This will greatly simplify our e2e testing.
A great extension for this would be the ability to process specfiic transfers. Also to process/fail/cancel transactions. I know you can fail/cancel transactions from the client side. But would be good to have a way to process/fail/cancel specific transactions from the Dwolla side.