Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automated PayPal payments

I'm looking for a way to automatically send money from my PayPal account, to other PayPal accounts; via PHP. Is this possible?

Something like:

$recievers = array("[email protected]" , "[email protected]");

$myAccount = "[email protected]";
$myPassword = "letmein";
$amountToPay = 20.0; // $20 USD

foreach($recievers as $payee)
    sendMoney($myAccount, $myPassword, $payee, $amountToPay); //Is this possible?
like image 374
Jesse Avatar asked Mar 20 '11 22:03

Jesse


People also ask

How does PayPal auto pay work?

An automatic payment authorizes a merchant to charge you whenever you make a purchase on their website without signing in to your PayPal account. This is something that's set up on the first checkout with the merchant. The terms of the authorization will be available in your PayPal account.


1 Answers

Yes this is possible.

You might want to look into Paypal's Mass Payment API.

like image 161
Abs Avatar answered Sep 28 '22 08:09

Abs