Paypal REST API和交易费用

时间:2013-10-03 19:19:18

标签: paypal

新的Paypal REST API是否支持收集类似于Stripe的交易费用:

https://stripe.com/docs/connect/collecting-fees

1 个答案:

答案 0 :(得分:0)

REST apis目前没有这个选项,唯一的额外费用是运费,税收除外。

交易金额详情(小计,税金,运费),总计为。

  "transactions":[
    {
      "amount":{
        "total":"7.47",
        "currency":"USD",
        "details":{
          "subtotal":"7.41",
          "tax":"0.03",
          "shipping":"0.03"
        }
      },
      "description":"This is the payment transaction description."
    }
  ]

经典API具有处理费用选项,因此将来可能还会将该功能添加到REST中。