Questions tagged [dwolla]

Dwolla allows anyone connected to the Internet to safely send and receive money. Dwolla's API enables developers to easily integrate money functionality into their applications, moving funds around in a RESTful breeze.

Dwolla

Using Dwolla's API starts with creating an application that's tied to a Dwolla account. Once set up, whether sending once-in-a-while payments or fully integrating with a specialized point of sale system, your Dwolla application will act as your identity to the end user & as a central point to graphically manage your application settings.

Dwolla's API can be integrated in 3 different flavors:

You can also build white label applications using Dwolla's v2 API:

Text from Dwolla's Developer Docs, used with permission

84 questions
7
votes
1 answer

Sending Money with Dwolla's API and using PHP to do it?

Hello everyone I'm back again, In my last post I was attempting to use the SOAP api (Integrating Dwolla with PHP with their API) but I found out the SOAP API is deprecated and apparently Dwolla has more efficient way such as the REST/oAuth2.0 which…
Xenland
  • 510
  • 1
  • 6
  • 19
5
votes
2 answers

Does google wallet offer an api to send money from person to person and/or mass pay?

Our company's system sends hundreds of small payments ($5 to $100 usually) per week to people via the API's offered by paypal and dwolla. Does google wallet's API offer an equivalent capability?
Justin H.
  • 251
  • 3
  • 11
4
votes
3 answers

Integrating Dwolla with PHP with their API

Foreword: Okay I've used APIs in the past such as TwitterAPI but I always used a library and some documentation to assist me with connections, and retrieving tokens. I have a basic understanding of how API's work. Okay so I've tried multiple ways of…
Xenland
  • 510
  • 1
  • 6
  • 19
4
votes
2 answers

How to encrypt a PIN that must be transmitted?

Dwolla permits an app to solicit and store a user's PIN as a form of pre-authorization, but requires that it be encrypted. From the TOS: PIN(s) must be encrypted in transit and at rest (this includes any and all backup mediums) using FIPS 140-2…
koanima
  • 567
  • 1
  • 7
  • 19
4
votes
2 answers

Guest checkout using Pay Now button (dwolla)

I've looked through the documentation but cant find an example of how to set AllowFundingSources to "true" using the Pay Now button. Is Guest Checkout only for the server-to-server checkout? Is there a complete example of using guest checkout? (not…
3
votes
1 answer

Is there a clean way to cover the Dwolla-imposed fee on behalf of users?

In our early test/launch of our product we would like to sponsor the $.25 Dwolla charge when a payment above $10 is made. Is there any clean way to do this? Clearly the transactions know the developer account information in order to make…
mayefsky
  • 43
  • 3
3
votes
1 answer

Programmatically pay a Dwolla account with API?

I am working on an application where I would need to send funds via the API, if possible, programmatically. Is this possible with Dwolla? Im not the developer so I'll explain best I can. I think it would be similar to what's possible with Paypal's…
Bruno
  • 89
  • 7
3
votes
2 answers

Does the Dwolla API Webhooks Notification send the wrong transaction id?

I think that the Dwolla API sends the wrong transaction ID in notifications. In a normal dwolla money transaction, two transaction IDs are created (this is weird to me, but that's how dwolla does it). Because these two are created at the same time,…
chrishiestand
  • 2,800
  • 1
  • 25
  • 25
3
votes
1 answer

Dwolla Balance Error 307

I'm using the official Dwolla PHP Library and trying: $balance = $Dwolla->balance(); if(!$balance) { echo "Error: {$Dwolla->getError()} \n"; } else { echo "Balance: $balance";} as referenced in the Dwolla Developer Documentation, and…
Brett Neese
  • 47
  • 2
  • 8
3
votes
1 answer

Change button attribute on click before link fires

I'm using the Dwolla platform with my site. I want to change the data-amount attribute of the button to the value in another text field on click. By the time the Dwolla site loads though, it prompts me to pay for the original, default amount so I…
quantumpotato
  • 9,637
  • 14
  • 70
  • 146
2
votes
1 answer

Dwolla payment integration in Mobile apps

I want to integrate Dwolla Payment into my App, a marketplace app. Initially planned to integrate Braintree, but we need to wait for the approval till the app development completion(then only submit for the review). So that my client instructed me…
ASP
  • 1,974
  • 3
  • 18
  • 30
2
votes
1 answer

Why do I get "Invalid application credentials" from Dwolla

So the story goes, Omar went searching far and wide for a reason as to why his Dwolla code was not working. On every try the output is {"Result":"Failure","Message":"Invalid application credentials."} My key, secret and destinationId are all…
Omar J.
  • 95
  • 2
  • 10
2
votes
1 answer

What happens when a Dwolla guest checkout finally clears or fails to clear?

When a guest checkout completes successfully, the redirect and webhook postback are both passed parameters indicating a successful checkout. However, what happens if the ACH fails to clear several days later, or is cancelled by the receiver? Is the…
jhosteny
  • 554
  • 3
  • 8
2
votes
0 answers

Dwolla checkout doesn't ask for funding source

I'm trying to setup a form that posts to https://www.dwolla.com/payment/pay to make a payment. I've already created a Dwolla account for the user at this point using the REST API, however I'm using this method for payment because the REST API…
Justin
  • 17,670
  • 38
  • 132
  • 201
2
votes
2 answers

Can you cancel/invalidate a CheckoutId?

I am using the off-site gateway, and I am locking my shopping cart upon choosing Dwolla for payment, but if the user cancels, I want to be able to unlock the cart and not allow the user to use the generated CheckoutId for purchase. Any direction on…
1
2 3 4 5 6