Paypal: Reports - Download History using API -


is there way automate process of downloading paypal history (reports - download history) using api? based on searches i've made i'm using transactionsearchreq() fetch data guess not right call. can please point me on how report data using api. i'm using c# (vs2012).

transactionsearchreq req = new transactionsearchreq(); req.transactionsearchrequest = new transactionsearchrequesttype(); req.transactionsearchrequest.startdate =   system.datetime.now.adddays(-30).tostring("yyyy-mm-ddthh:mm:ssz"); req.transactionsearchrequest.enddate = system.datetime.now.tostring("yyyy-mm-ddthh:mm:ssz"); paypalapiinterfaceserviceservice service = new paypalapiinterfaceserviceservice(); transactionsearchresponsetype responsetype = service.transactionsearch(req);  <account apiusername="jb-us-seller_api1.paypal.com" apipassword="wx4wtu3s8my44s7f" applicationid="app-80w284485p519543t" apisignature="afcwxv21c7fd0v3byyyrcpssrl31a7ydhhspuu2xhtmozxswhfxu-rwy"/> <account apiusername="certuser_biz_api1.paypal.com" apipassword="d6jnkkulhn3g5b8a" applicationid="app-80w284485p519543t" apicertificate="c:\paypal_sdks\sdk-core-dotnet\unittest\resources\sdk-cert.p12" privatekeypassword="password"/> 

thanks in advance josh


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -