Getting the user email after payment to send code to email

259 Views Asked by At

Im creating a system in node.js where a user pays for a product and after payment they get sent a receipt with a special code in it which they can then redeem.

How do i get the user's email and the paymentID (which they paid with) after they have been redirected to the success page after payment.

Im using the "paypal-rest-sdk" and i have everything else working.

Payment Authorization & Capture the Payment (Future) using PayPal-node-SDK (PayPal Express Checkout) -- If you read the top answer on that post, im basically asking how to get the information of the paymentId from the user who just paid in my GET request of the successfulpaymenturl so i can run the .execute code and see the person who paid's email and then i can send them the unique code they get after buying the product.(http://prntscr.com/ds0fpo)

Thanks a bunch!

1

There are 1 best solutions below

0
On

Ah silly me, when you get redirected to your success page you get 3 params in req.query with one of them giving me the payment id and allowing me to check if it was approved andthen allowing me to run the execute code in the link above so i could get the payer info and in there was the email!