paypal,paypal-adaptive-payments
It's just called an authorization, and pretty much all of PayPal's payment products (Classic, Express Checkout, Payflow, Adaptive, REST, etc) support it.
ios,objective-c,paypal,uialertview,paypal-adaptive-payments
It appears as if the Paypal library itself is putting the alertview up. So unless there is something in the paypal library to disable that feature then you probably can't directly disable it. There might be a couple of workarounds, here are my thoughts: Listen to the notifications when a...
paypal,delay,paypal-adaptive-payments,chained-payments
Sounds like you just have the amounts wrong. When working with chained payments the primary receiver amount should be the total amount of all payments. Then the secondary amounts would just be what they are supposed to get. For example, say $100 was getting split between 3 people. You might...
paypal,paypal-adaptive-payments
Based on the PayPal specification for ExpressCheckout API and Adaptive Payments API. In case of the ExpressCheckout, PayPal returns the token with the ReturnURL after the user is sent to PayPal for checkout authorization. (https://www.paypalobjects.com/webstatic/en_US/developer/docs/ec/SandboxECUX.gif). In case of Adaptive Payments API PayPal does NOT send the token with the ReturnURL...
php,paypal,paypal-ipn,paypal-adaptive-payments
Yes, collecting payments to various email addresses/accounts is very easy, and you can have a single IPN service to verify these transactions. See the docs at: https://developer.paypal.com/webapps/developer/docs/classic/ipn/integration-guide/IPNIntro/ .... for how to set the IPN address per-transaction (overriding any setting your merchants may be using account-wide for other transactions. iFrames are...
paypal,payment-gateway,payment,paypal-sandbox,paypal-adaptive-payments
You need to have the following: A PayPal Business Account(Confirmed email and verified account) PRO account not required. Need to create a application at apps.paypal.com and submit(Adaptive Payment is a special feature which needs a application to be submitted and approved by app review team. Once app is approved, you...
php,paypal,paypal-adaptive-payments,paypal-rest-sdk
How about Payouts API ? You should be able to use Payouts using PayPal-PHP-SDK which is actively developed. Also, there are few samples that could get your started really quickly. You could setup the SDK and run samples in your machine fairly quickly without any issue....
paypal,paypal-adaptive-payments,paypalmerchantsdk
Unfortunately REST API does not have this functionality at this time. To do this you can use Adaptive Payments to be the caller of the API and supply receiver email addresses, or Permissions API to make Classic API calls for other users.
api,paypal,paypal-adaptive-payments
If Adam does not need to keep any funds at all, and you're simply building a checkout that uses Adam's API credentials but sends the money to Fred, then I would recommend using the Express Checkout API. The Express Checkout experience is a little nicer, more feature packed, and does...
paypal,paypal-sandbox,paypal-adaptive-payments,express-checkout
You need to contact the PayPal support team as they need to enable some setting on your Payflow account . Once its enabled you will see the option there to put your PayPal email address .
paypal,paypal-adaptive-payments
With a delayed chained payment there is no way to pay secondary receiver(s) individually at different intervals. You could do what you're saying, though, by ditching the delayed chained payment method altogether and using another method. For example, if you just use a regular checkout method (Payments Standard, Express Checkout,...
paypal,paypal-sandbox,paypal-adaptive-payments
PayPal adds this greeting to the currently-cookied user on your machine. If you begin the checkout, PayPal will query your (the currently-cookied user) account to begin the checkout process, and depending upon the outcome of security checks may even permit you to check out without logging in again for each...
php,curl,paypal,paypal-adaptive-payments
You can use this link to easily obtain API user, pass, and signature. You might also be interested in taking a look at my PHP class library for PayPal. It will make the API calls very simple for you....
paypal,paypal-ipn,paypal-adaptive-payments
I contacted Paypal support and this is what they had to say: I checked your current IPN settings for your account and it appears IPN is set to 'Off', not 'Disabled'. This is a very important difference, as IPN being disabled prevents IPN messages from being sent at all. If...
paypal,paypal-adaptive-payments,chained-payments
Based on my messages with PayPal's support, I tell you that no one will pay the fees because the payment will be reverted back to the buyer ! So if you didn't complete the payment, it will go back and you will not be able to change the receivers during...
paypal,paypal-adaptive-payments
For GetPrePaymentDisclosure you must supply senderEmail in the PAY request for it to function. This is because GetPrePaymentDisclosure is supposed to be used to determine the status of the transaction and see if it is covered by the Remittance Transfer Rule. From the Documentation: This API is specific for merchants...
php,paypal,paypal-adaptive-payments
The error is because you Adaptive Payment application is not approved for Chain Payments and you are trying to execute Chain Payments API. Go to apps.paypal.com and check(I can see that you are not enabled for chain Payments). In order to resolve the error, create a new application at apps.paypal.com...
paypal,paypal-ipn,paypal-adaptive-payments,paypal-subscriptions
You have a few different options: Reference Transactions (no cost requires approval from PayPal) Enhanced Recurring Billing/Automatic Payments (cannot be used with a Pro or Advanced Accounts) Has a cost associated with it ($19.99 monthly) Recurring Billing with PayPal Payments Pro Payflow or PayPal Payments Advanced. Has a cost associated...
php,paypal,paypal-ipn,paypal-sandbox,paypal-adaptive-payments
Unless paypal fixed something in the last 3 years, the ONLY way I could accomplish this was to send hyphenated data as the item_number "item_number1": "t-253-22768-", This format was "type" - "product id" - "user id" - "discount code"...
paypal,paypal-sandbox,paypal-adaptive-payments
Well i kind of answered my own question. For some reason paypal has added flex to all of the adaptive payment apis. It just simply does not allow it for pre-authorization. Its literally the only one. You can do it for future payment pre-authorization...just not adaptive payaments. https://www.paypalobjects.com/webstatic/en_US/developer/docs/pdf/pp_adaptivepaymentsmobile.pdf Basically the...