Reputation: 19
Here's the scenario: I have a store that uses the jQuery simplecart (but not married to it). I have the physical goods of the store and ship them from my location. The single owner of the goods is somewhere else with a different PayPal account. What I want to try to do is when a payment for goods come in, have the actual payment of the goods go to one account and the shipping costs go to my account. Is this possible through a setup within PayPal or perhaps some type of PHP cart system or something else?
TIA!
Upvotes: 0
Views: 58
Reputation: 1283
You have to come up with a script on your own (or hire someone) to fetch the transaction by id on Paypal under the first Paypal account and then recalculate how much is for shipping and how much is for sales.
Then you need to be aware that there will be fees when you transfer money to another account.
Finally you use their api to transfer money from first account to the second (thus paying commission fees to Paypal).
You can only have one Paypal account per person, so what you want is not possible without paying fees to Paypal (but perhaps, you could add a withdrawal to bank account).
Upvotes: 1