4

当我使用 PayFlow 定期付款时,是否可以在最后一次交易中通过 PayPal PayFlow API 进行退款。谢谢, 马切克

4

1 回答 1

3

对此的简单回答是“是”。

您需要像正常交易一样记入贷方。参数是:

USER
VENDOR
PARTNER
PWD
TENDER=C // C = credit card, P = PayPal
TRXTYPE=C //  S = Sale transaction, A = Authorisation, C = Credit, D = Delayed Capture,
ORIGID=XXXX // ORIGID to the PNREF value returned from the original transaction

然后您可能需要取消重复交易以阻止它再次发生。参数是:

USER
VENDOR
PARTNER
PWD
ACTION=C // C = Cancel
TRXTYPE=R //  R = Recurring
ORIGPROFILEID=XXXX // Original Profile ID (of the recurring transaction)

https://www.paypalobjects.com/webstatic/en_US/developer/docs/pdf/pp_payflowpro_recurringbilling_guide.pdf

于 2014-03-03T05:36:14.337 回答