我要求在Paypal Merchant Account
中将金额从End User Paypal account
转移到asp.net web application using C#
。有可能吗?
以下是场景:
Merchant Paypal Account
发送到End Users Paypal account
。 那么,是否有Paypal API
将资金从Merchant Account
转移到EndUser Paypal account
?
他们是SandBox
提供的任何Paypal
吗?
ASp.net中的示例代码? 请推荐要求,建议做..!
帮助感谢!
答案 0 :(得分:3)
在将资金从商家帐户转移到另一个帐户(汇款)时,有多种选择。
MassPay API - >这是一个强大的解决方案,您可以使用它从一个商家向每个电话的最多250个收件人发送资金。这可以通过API请求和PayPal帐户本身上传CSV文件来完成。
更多信息:
文档:https://developer.paypal.com/webapps/developer/docs/classic/mass-pay/gs_MassPay/
示例代码:http://paypal.github.io/#merchant - >你会在SDK中找到一个masspay样本
自适应付款API - 隐含付款 - >使用自适应付款,您可以选择基本上发送“隐式付款”,当发件人帐户是与API用户名相关联的帐户时,PayPal不需要发件人的明确批准(因此“隐含”)
Payments Pro - Credit API - >您可以使用“DoNonReferencedCredit”API方法将资金直接发送到客户信用卡
请参阅:https://developer.paypal.com/webapps/developer/docs/classic/api/merchant/DoNonReferencedCredit_API_Operation_NVP/ 示例:请参阅1中链接的Merchant SDK。
从我的头脑中,这些将是可用的PayPal产品选项。
答案 1 :(得分:0)