Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Paypal refund between 2 users

At the moment, I have PHP code which allows user1 to pay user2. If user2 logs into his/her paypal account s/he will see a refund button next to the transaction for 60 days.

If user2 clicks the refund button, is it possible for my PHP code to capture and/or receive details about this refund event, even though all this is happening directly from the paypal site?

I'm guessing this is not possible, but am posting this question with the thought that I could be wrong as I don't know paypal's api's like the back of my hand.

like image 506
oshirowanen Avatar asked Feb 01 '13 09:02

oshirowanen


People also ask

Does PayPal do refunds on friends and family?

PayPal will no longer allow refunds for Friends and Family payments. This is because these types of payments are not covered by PayPal's Purchase Protection Program.

Does PayPal refund money if scammed?

Protection you can count on. If you don't receive the item that you ordered, or it shows up significantly different from its description, you may qualify for Purchase Protection, and we'll reimburse you for the full purchase price plus any original shipping costs, subject to terms and limitations.

How long does it take to get money from PayPal friends and family?

The answer depends on the source of the funding from the sender. It takes just a few minutes to send from their PayPal balance or a debit/credit card. If the money comes from a linked bank account, it can take two to three business days to clear the bank.


1 Answers

add the location of your IPN listener to your account settings. This way, all notifications will be sent to your listener regardless of whether it initiates from your code. At paypal.com, specify the Notification URL to your IPN listener in the Profile > My Selling Tools section of your PayPal Business or Premier account.

https://www.x.com/developers/paypal/documentation-tools/ipn/ht_ipn https://cms.paypal.com/cms_content/ES/es_ES/files/developer/IPNGuide.pdf

like image 155
Cheryl Waller Avatar answered Oct 03 '22 03:10

Cheryl Waller