Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple PayPal Transactions at once

Tags:

html

php

paypal

Are there any PayPal APIs to process multiple transactions at once? I'm creating a website where a customer may want to purchase multiple items from different vendors. Currently I have it set up where my website cart redirects the customer to PayPal for each vendor, but I can see this potentially driving customers away. I've looked around but haven't quite found anything information on this.

Any information on tutorials or the APIs would be greatly appreciated.

like image 329
Zac Avatar asked Apr 11 '12 15:04

Zac


1 Answers

PayPal definitely supports this. In fact, it offers multiple products to do so.
These are the products you can look at:

  1. PayPal Adaptive Parallel Payments
  2. PayPal Adaptive Chained Payments
  3. PayPal Express Checkout Parallel Payments

All of these support a single checkout flow with multiple receivers.
The basic difference between Adaptive and Express Checkout is that if you choose the Adaptive API's, you can easily change to Chained Payments later.

On the other hand, if you integrate Express Checkout with Parallel Payments, you can make use of the built-in Mobile Express Checkout, which automatically offers a mobile-sized checkout page to mobile devices, and Express Checkout supports 'line items' (item details shown on the checkout page), which Adaptive Payments doesn't at the moment.

https://www.x.com/developers/paypal/products/adaptive-payments
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_APIntro

https://www.x.com/developers/paypal/products/express-checkout
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_WPParallelPaymens

like image 99
Robert Avatar answered Sep 28 '22 20:09

Robert