Tagged Questions

The PayPal SOAP API is exposing various features of the PayPal platform through SOAP webservices.

learn more… | top users | synonyms

6
votes
1answer
4k views

paypal api - send money to any paypal account

is it possible to send money using paypal API to any paypal account (not just to API credentials owner). I know that it's possible to do that using IPN, but I need to use SOAP. many thanks
5
votes
3answers
2k views

PayPal SOAP and NVP

I am new to PayPal and i want to know which is batter way to implement PayPal, SOAP or NVP API. And what is the major difference between these two???
3
votes
1answer
2k views

Sending an API CAll with PayPal SOAP API

Ok, so I have the service reference in my .NET project. And yes I know that you now have access to proxy classes. But in the past, I am used to doing this via an HttpWebRequest object using NVP, but ...
3
votes
2answers
721 views

PayPal API Certificate

Ok, I've never seen this ever when coding againts and sending 3rd party SOAP API calls but looks like PayPal requires their bigger clients to use the X509 certificate in order to send API calls rather ...
2
votes
0answers
373 views

Pass Custom Variable to PayPal server via IPN Message and Response

I had successfully integrated Paypal with my iPhone application, but I got stuck over passing the Custom variable via SOAP to Pay pal using IPN Message. Has anyone pass the Custom Variable to ...
1
vote
1answer
330 views

Paypal Direct Payment API using Paypal account

is it possible to make a payment with user's paypal balance using Direct Payment? I know that Direct Payment offers recurring payments but I'd like to use it not only for credit cards but for paypal ...
1
vote
0answers
149 views

Paypal | Mass payment issue

I am trying to implement masspay of the Paypal. I am using MassPay API. It works successfully. But when I added 4 paypal transaction details for the payment and if any transaction has failed it ...
1
vote
1answer
254 views

Paypal: Cancel or timeout a payment

I'm using Adaptive Payments API in order to create a new parallel payment. I'm reading documentation but I still have some questions: Is there any API operation for cancel this payment (obviously, ...
1
vote
2answers
191 views

Handling of PayPal IPN: is necessary? Can I use another method?

Reading PayPal developer documentation (and this is a lot of documentation) I'm not sure if IPN is mandatory or I can simply ignore it. Of course, I must implement some other mecanism in order to ...
1
vote
2answers
496 views

PayPal's CallerServices Works on localhost but not server

My PayPal Direct script works perfect on my machine. Both nUnit tests and via a website on localhost. However this first line of code fails on my server and another server. (both full trust) ...
1
vote
2answers
276 views

Test PayPal payments not showing up in sandbox

I'm working the Adaptive Payment .Net API samples. I've setup my test account stuff and everything runs fine with a "success" transaction. The only problem is I neither see debits from the payees ...
0
votes
0answers
32 views

Using Paypal For my web application

I want to integrate Paypal to my website , so have few questions regarding that Does Paypal support Micro Payment? If we don't have the card/account details on our web page and redirect directly to ...
0
votes
0answers
437 views

Paypal API - timeout exception

I am getting a timeout exception with the following paypal api code. Any ideas why? (I had thought integrating paypal would be easy, but I seem to keep falling over problems like this) ...
0
votes
1answer
364 views

paypal SoapClient not working

I am using PHP's SoapClient class to connect to paypal. I have a number of problems: The paramaters I pass to the soap call are array('ReturnAllCurrencies'=>0, 'Version'=>'63.0') but as you ...