12

I am working with PayPal integration for the first time and am confused regarding the two solutions. I need to accept direct payments. User enters credit card information and I use PayPal as the processor. I would also at a later point after release like to add PayPal Express Checkout for convenience. I have PayPal Payments Pro, which assigned me a Payflow account. Which documentation should I follow to accomplish both? There are so many assorted PDFs, many of which are over 100 pages, and I don't have a clear idea where I should start.

I would greatly appreciate a quick separation of services (XMLPay? DoDirectPayment?)

I am using C# / ASP.NET and already have the core and rest api libraries installed in my project via NuGet. I also have an app created and an ID+Secret pair to use.

I have called PayPal but the phone team does not have the proficiency to answer these questions and simply refers me to the documentation site. Hopefully a developer who has been down this road can steer me in the right direction. Thanks!

Zerkey
  • 795
  • 1
  • 6
  • 16

2 Answers2

4

I would suggest the REST Apis, they support both direct credit card and express checkout depending on which funding instrument (CC vs PayPal) you pass in the pay request.

There is also a C# SDK provided to get you started, all info available at: https://developer.paypal.com/webapps/developer/docs/api/

Finn K
  • 620
  • 3
  • 8
0

For anyone running into this post in their search for more PayPal integration information (as I did), the C# REST API wrappers (provided by PayPal) are very useful, and they include full sample projects showing you how to perform most common tasks.

You can find them here: https://github.com/paypal/PayPal-NET-SDK

Scott Edwards
  • 35
  • 1
  • 8