Magento – Magento 2 paypal Instant Payment Notification (IPN) URL

ipnmagento2payment-gatewaypayment-methodspaypal

Can anyone tell me what is the Correct Paypal Instant Payment Notification (IPN) url for Magento 2.x. I have used

BASE_URL/index.php/paypal/ipn/index/

and

YOUR_BASE_URL/paypal/ipn/

Both URLs get 500 Error in Post method.

Best Answer

If someone else comes across this problem: I've had the exact same issue and found out, that the configuration was wrong. My exception.log had lines, containing this error message:

[2019-07-23 07:23:35] main.CRITICAL: The requested "requested_email@domain.com" and the configured "configured_email@domain.com" merchant emails don't match. {"exception":"[object] (Exception(code: 0): The requested \"requested_email@domain.com\" and the configured \"configured_email@domain.com\" merchant emails don't match. at /var/www/magento/htdocs/vendor/magento/module-paypal/Model/Ipn.php:120)"} []

I had to reconfigure the PayPal payment settings to provide the correct email address: Now the error is gone.

Related Topic