【问题标题】:Venmo payment SDK Chaining SystemVenmo 支付 SDK 链式系统
【发布时间】:2014-04-24 10:06:16
【问题描述】:

我已经成功安装了 Venmo 和 Braintree API 集成。 我想知道有没有办法在其中集成链接系统? 就像用户可以向没有 Venmo 帐户的其他用户支付一些金额,并且一些转账金额也将支付给商家

提前致谢

【问题讨论】:

    标签: ios payment braintree venmo


    【解决方案1】:

    我在布伦特里工作。如果您还有其他问题,请随时联系our support team

    是的,Braintree's Marketplace product 正是这样做的。你可以pay any phone number / email address,即使是还没有 Venmo 帐户的人:

    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"
    )
    

    您可以在将支付给您的每笔交易中使用service fee

    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"
    )
    

    【讨论】:

    • 我们有什么方法可以通过后端访问用户的 venmo 电子邮件地址以获取资金?
    • @Leena 我不明白你的问题。我建议你contact Braintree support
    猜你喜欢
    • 2016-08-10
    • 2015-05-23
    • 2014-07-08
    • 2014-07-11
    • 1970-01-01
    • 2013-06-19
    • 2014-05-16
    • 1970-01-01
    • 2013-10-16
    相关资源
    最近更新 更多