Programmatically pay a Dwolla account with API? -


i working on application need send funds via api, if possible, programmatically. possible dwolla?

im not developer i'll explain best can. think similar what's possible paypal's adaptive payments api. basically, owner of dwolla account, need send money dwolla account using application. receiver's dwolla account#, payment amount, source, , pin stored/generated application manually entering information isn't necessary.

our rest api's transactions / send method you're looking for. allows send money on behalf of dwolla user programmatically.

the send endpoint takes parameters mentioned. request can simple as:

post https://www.dwolla.com/oauth/rest/transactions/send content-type: application/json   {     "oauth_token": "hyq7sishz90i6seuptmhx8pppykfup94t5bsyw1xi9qvab7yqn",     "pin": "1278",     "destinationid": "812-713-9234",     "amount": "309.21" } 

note endpoint requires supply oauth token. read how they're obtained here.


Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -