How to transfer Money from Merchant Paypal account to EndUser Paypal account through ASP.NET?

主宰稳场 提交于 2019-11-30 18:13:04

问题


I have a requirement to Transfer the Amount from Paypal Merchant Account to End User Paypal account in my asp.net web application using C#. Is it possible?

Here is the Scenario:

  1. Consumers visits a website and want to sell some Products listed online on a website.
  2. Login to website and choose the product to sell online via our website.
  3. Website accepts(paypal information) & sends the Shipping information.
  4. After receiving the Product, the Payment is to be done from Merchant Paypal Account to End Users Paypal account via Web application.

So, is there any Paypal API to transfer money from Merchant Account to EndUser Paypal account?

Is their any SandBox provided by Paypal?

Sample Code in ASp.net? Please recommend the requirements, suggestions to do..!

Help Appreciated!


回答1:


there are a number of options available when it comes to transferring funds from a merchant account to another account (sending money).

  1. MassPay API --> This is a robust solution you can use to send funds from one merchant to up to 250 recipients per call. This can be done via an API request and via the PayPal Account itself by uploading a CSV file.

    More info:
    Documentation: https://developer.paypal.com/webapps/developer/docs/classic/mass-pay/gs_MassPay/ Sample Code: http://paypal.github.io/#merchant --> you'll find a masspay sample within the SDK

  2. Adaptive Payments API - Implicit Payments --> With adaptive payments, you do have the option of sending "Implicit Payments" basically, when the sender account is the same account that is associated with the API Username, PayPal does not require an explicit approval from the sender (hence the "implicit")

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

    Samples: http://paypal.github.io/#adaptive-payments

  3. Payments Pro - Credit API --> You can send funds directly to a customers credit card using the "DoNonReferencedCredit" API method

See: https://developer.paypal.com/webapps/developer/docs/classic/api/merchant/DoNonReferencedCredit_API_Operation_NVP/ Samples: refer to the Merchant SDK linked in 1.

Out of the top of my head, these would be the available PayPal product options.




回答2:


download code in this link asp.net code for paypal http://www.codeguru.com/dbfiles/get_file/Use_of_the_PayPal_VB_NET_src.zip?id=13851&lbl=USE_OF_THE_PAYPAL_VB_NET_SRC_ZIP



来源:https://stackoverflow.com/questions/20088272/how-to-transfer-money-from-merchant-paypal-account-to-enduser-paypal-account-thr

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!