I need to simulate IPN when a recurring payment fails. My application can then create create pending invoices and send it to the customers.
I searched and found that I would need to setup IPN that will handle below txn_type
recurring_payment_skipped
recurring_payment_failed
Will these two be sufficient?
Also, Recently paypal has provided a new tool called IPN Simulator where you can send a sample IPN to a URL. It only supports below txn_type
s
web_accept
(eCheck-pending, eCheck-declined, eCheck-complete)cart
(Express checkout, Cart checkout)web_accept
(Web Accept, Refund)and so on. But no
recurring_payment_skipped
orrecurring_payment_failed
Where can I simulate those from?
Please help me out.