8eecf0d2
8eecf0d2

Reputation: 1579

Request paypal payment with variable recipient

Does paypal support any sort of variable transaction? where the receiver of payment is a variable?

for example, paypal.com/pay/[email protected]&amount=10.00

All of the merchant tools use an internal paypal user id instead of a plain email, which is fair enough as they are merchant tools.

I've been reading up on adaptive-payments but I don't have any need for a middle man, just a simple payn amounttox address.

Upvotes: 0

Views: 70

Answers (1)

geewiz
geewiz

Reputation: 2206

Sure thing. Like this:

https://paypal.com/[email protected]&amount=10

... which is just a simplified GET version of the (non-encrypted) PayPal button interface POST. Pretty much all the same parameters that you can put in the POST can be used in the GET.

Upvotes: 1

Related Questions