0

I have stuck into the problem of related to transfer amount back to credit card from paypal when user cancel his/her transaction. I don't want to use paypal refund feature in our application. My client requires to send back amount at the same time when user cancel his/her transaction. Can anyone guide me to complete this feature or is there any API to solve such type of feature.

Thanks in advance. Dewan

4

2 回答 2

2

我不想在我们的应用程序中使用贝宝退款功能。我的客户要求在用户取消交易的同时退回金额。

PayPal如何退款

您不想使用 PayPal 的退款功能,但想将钱退回给买家?这称为退款。我确定您误会了 PayPal 退款的方式。如果用户使用信用卡付款,他们将退还到他们的信用卡中。如果他们使用银行账户或 PayPal 账户付款,他们将退还到他们的 PayPal 账户。

向买家退款的 API 调用

  1. DoNonReferencedCredit 每次都会退款到您指定的信用卡,并且您不需要交易 ID。

    • 如果买家不再拥有与交易关联的卡,或者 PayPal 中为退款分配的时间已过,您可能需要使用 DoNonReferencedCredit API。
  2. RefundTransaction 将退还资金来源,如“如何 PayPal 退款”段落中所述。

    • 如果您主要关心的是通过 API 发出退款,您有一个交易 ID(您说付款已完成,所以您应该有一个交易 ID),并且PayPal 的退款时间还没有过去,您应该使用 RefundTransaction API。
于 2011-09-02T23:46:25.780 回答
1

You might be able to use something like DoNonReferencedCredit from the paypal API - but I'm not 100% sure on that.

于 2009-12-28T09:54:57.397 回答