Paypal API Can we transfer money to multiple accounts in a transaction?

The intended scenario is to assume a shopping cart site where the buyer must pay for the product. The cost of the product sold will be transferred to the appropriate dealer. Here, the owner of the website must be paid (charged) for the purchased product.

Is this possible in Paypal? Right now, I'm using Paypal checkout. Your ideas / suggestions would be helpful. Please do it.

+4
source share
2 answers

There are several ways to fix this.

You can use the Adaptive Payments platform, in particular the Pay API , to create concurrent or chain payments, so that multiple recipients can receive money in the same transaction.

You can also make concurrent payments using Express Checkout , but you cannot make consecutive payments.

The main difference is that in parallel payments, the buyer will see a split during the checkout. With the help of the payment chain, you can hide it so that they see only the main receiver. In addition, the payments made may be delayed, so you can activate the commission, which will be paid later if necessary (for example, waiting for the completion of the service).

Another way you could do this is to use Payment Standard , Express Checkout or Payments Pro , and let the payment go completely to one account. Then configure the Pay API request to send the payment to the second receiver, or use the MassPay API. This can be configured as part of the IPN solution, so it is all automated. In this case, you basically build what the adaptive payment platform does for you, but it will give you a little more freedom over everything in the application.

+4
source

And what if the values ​​to be shared fluctuate month after month?

-one
source

Source: https://habr.com/ru/post/1499095/


All Articles