ios - Venmo payment SDK Chaining System -


i have installed venmo , braintree api integration successfully. want know there way integrate chaining system in that? user can pay amount other user don't have venmo account , of transfer amount paid merchant well

thanks in advance

i work @ braintree. if have more questions, please feel free reach out our support team.

yes, braintree's marketplace product that. can pay phone number / email address, people don't have venmo account yet:

result = braintree::merchantaccount.create(   :individual => {     :first_name => "jane",     :last_name => "doe",     :email => "jane@blueladders.com",     :phone => "5553334444",     :date_of_birth => "1981-11-19",     :address => {       :street_address => "111 main st",       :locality => "chicago",       :region => "il",       :postal_code => "60622"     }   },   :funding => {     :destination => braintree::merchantaccount::fundingdestination::email,     :email => "funding@blueladders.com",   },   :tos_accepted => true,   :master_merchant_account_id => "14ladders_marketplace",   :id => "blue_ladders_store" ) 

you can take service fee on each transaction paid you:

result = braintree::transaction.sale(   :merchant_account_id => "blue_ladders_store",   :amount => "10.00",   :credit_card => {     :number => "5105105105105100",     :expiration_date => "05/2012"   },   :service_fee_amount => "1.00" ) 

Comments