Main Topics
Browse All TopicsHi , I need to download all my odsers (As Seller) using my customize software from Paypal transaction History. How can I do that? is there any API for that.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi lionest,
thanks for comment, but these are manual methods, I want to integrate it to my Software , It will schedule and download Data by Paypal API. I need some code help like
I want to use WebService in my Windows Application:
Add web reference to http://www.paypal.com/wsdl
using com.paypal.www;
UserIdPasswordType user = new UserIdPasswordType();
user.Username = "";
user.Password = "";
user.Signature = "";
PayPalAPISoapBinding PPInterface = new PayPalAPISoapBinding();
PPInterface.RequesterCrede
PPInterface.Url = "https://api.sandbox.paypa
//PPInterface.Url = "https://api.paypal.com/2.
PPInterface.RequesterCrede
------
----
----
but I have no Idea how to get this done.
Thanks,
Vivek Khare
I suggest you look here..
https://cms.paypal.com/us/
There are some good tutorials and code examples etc..
I got the solution :
private void GetTransations(string strUserName, string strPassword, string strSignature,DateTime startDate)
{
try
{
UserIdPasswordType user = new UserIdPasswordType();
user.Username =strUserName.Trim();
user.Password = strPassword.Trim();
user.Signature = strSignature.Trim();
PayPalAPISoapBinding PPInterface = new PayPalAPISoapBinding();
PPInterface.RequesterCrede
PPInterface.Url = "https://api.sandbox.paypa
//PPInterface.Url = "https://api.paypal.com/2.
PPInterface.RequesterCrede
TransactionSearchReq req = new TransactionSearchReq();
req.TransactionSearchReque
req.TransactionSearchReque
//req.TransactionSearchReq
req.TransactionSearchReque
TransactionSearchResponseT
res = PPInterface.TransactionSea
if (res.PaymentTransactions.L
{
// Data exists in Array
//object [] str=res.PaymentTransaction
for (int i = 0; i < res.PaymentTransactions.Le
{
//= new Array();
res.PaymentTransactions.Co
}
}
}
catch (Exception exception)
{
this.label1.Text = exception.Message;
}
}
Business Accounts
Answer for Membership
by: lyonstPosted on 2009-06-25 at 01:10:36ID: 24709179
Hi, does this help..
support-ce nter/index .php?x=& mo d_id=2&id= 7
http://www.simpleport.net/