0

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

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

4

1 回答 1

0

REST API 目前没有该选项,唯一的额外费用是运费,而不是税费。

交易金额详细信息(小计、税款、运费),总计为总计。

  "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 中。

于 2014-04-17T18:05:03.920 回答