I'm constantly confused with PayPal (x.com vs. developer.paypal.com, API names, etc.) and need help locating the latest API that I'm currently using in my project. I have a Visual Studio 2010 C# reference to this DLL:
paypal_base (Properties: version 5.6.65.1, Runtime Version: v1.1.4322)
Questions:
Q1. What is URL of latest download?
Q2. I downloaded payflow_dotnet_setup_v4.33.zip and I'm reading "PayPal Payflow SDK for .NET Developer's Guide), BUT there is NO MENTION of any of the current calls I'm already using that look like this. Why?
DoCaptureRequestType pp_request = new DoCaptureRequestType(); pp_request.AuthorizationID = authorizationId; return (DoCaptureResponseType)caller.Call("DoCapture", pp_request);
Q3. Is this API deprecated in liu of REST API?
I'm SO confused.
Pete