使用PayPal Refund API进行自适应付款的部分退款返回内部错误(520002)

时间:2014-01-23 01:56:10

标签: paypal paypal-sandbox paypal-adaptive-payments

我正在尝试编写代码以对自适应付款进行部分退款。

我读过https://developer.paypal.com/docs/classic/api/adaptive-payments/Refund_API_Operation/

这就是我的请求

curl -s --insecure
-H "X-PAYPAL-SECURITY-USERID: api_username" 
-H "X-PAYPAL-SECURITY-PASSWORD: api_password" 
-H "X-PAYPAL-SECURITY-SIGNATURE: api_signature" 
-H "X-PAYPAL-REQUEST-DATA-FORMAT: NV" 
-H "X-PAYPAL-RESPONSE-DATA-FORMAT: NV"
-H "X-PAYPAL-APPLICATION-ID: your_app_id "          
https://svcs.sandbox.paypal.com/AdaptivePayments/Refund  -d  
"requestEnvelope.errorLanguage=en_US 
&requestEnvelope.detailLevel=ReturnAll
&transactionId=xxxxxxxxxx
&currencyCode=USD
&receiverList.receiver(0).amount=10.00"

原始交易的金额> 10.00我试图部分退还这笔款项

响应基本上是“内部错误”,错误代码为520002

有什么想法吗?

1 个答案:

答案 0 :(得分:7)

想出来了。基本上我也要指定 我的请求中receiverList.receiver(0).email

疯狂的是,在PayPal的文档中,它清楚地说明了

receiverList.receiver(n).emailThe identified receiver's email address receiverList.receiver(n).amountAmount to refund to the identified receiver

由于我部分退款给用户,电子邮件应该是用户的电子邮件,对吗?

错了,电子邮件必须是我的PayPal的帐户电子邮件

不要问我为什么,如果你能从这种疯狂中理解,请告诉我。

PS。感谢PayPal,返回一个名为internal error

的非常有用的错误