如何通过ASP.NET将Money从Merchant Paypal账户转账到EndUser Paypal账户?

时间:2013-11-20 05:43:25

标签: c# asp.net paypal paypal-sandbox

我要求在Paypal Merchant Account中将金额从End User Paypal account转移到asp.net web application using C#。有可能吗?

以下是场景:

  1. 消费者访问某个网站,并希望在网站上销售一些在线列出的产品。
  2. 登录网站,选择通过我们的网站在线销售产品。
  3. 网站接受(贝宝信息)&发送运输信息。
  4. 收到产品后,付款将通过网络应用程序从Merchant Paypal Account发送到End Users Paypal account
  5. 那么,是否有Paypal API将资金从Merchant Account转移到EndUser Paypal account

    他们是SandBox提供的任何Paypal吗?

    ASp.net中的示例代码? 请推荐要求,建议做..!

    帮助感谢!

2 个答案:

答案 0 :(得分:3)

在将资金从商家帐户转移到另一个帐户(汇款)时,有多种选择。

  1. 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样本

  2. 自适应付款API - 隐含付款 - >使用自适应付款,您可以选择基本上发送“隐式付款”,当发件人帐户是与API用户名相关联的帐户时,PayPal不需要发件人的明确批准(因此“隐含”)

    文档:https://developer.paypal.com/webapps/developer/docs/classic/adaptive-payments/integration-guide/APIntro/#id094MB0Q0T5Z

    样品:http://paypal.github.io/#adaptive-payments

  3. Payments Pro - Credit API - >您可以使用“DoNonReferencedCredit”API方法将资金直接发送到客户信用卡

  4. 请参阅:https://developer.paypal.com/webapps/developer/docs/classic/api/merchant/DoNonReferencedCredit_API_Operation_NVP/ 示例:请参阅1中链接的Merchant SDK。

    从我的头脑中,这些将是可用的PayPal产品选项。

答案 1 :(得分:0)