使用 paypal-recurring gem,我们如何要求对经常性资料进行全额退款?我正在使用 Ruby on Rails 开发我的应用程序。我尝试搜索它,但没有找到适合我的问题的答案。
我找到了这个链接:
https://www.x.com/developers/paypal/documentation-tools/api/refundtransaction-api-operation-soap
但我不明白如何将它与我的应用程序集成。
我正在使用这个宝石,
https://github.com/fnando/paypal-recurring
我的代码如下:
def refund_full_paypal_transaction
PayPal::Recurring.new({
:profile_id => "customers profile id",
:transaction_id => "to_be_refunded transaction_id",
:reference => "12345",
:refund_type => :full,
:amount => "whatever amount",
:currency => "USD"
})
end