Daniel West
Daniel West

Reputation: 1808

Where is the 'IPN History' on the new PayPal website?

Just been trying to find the new IPN History link on the new PayPal website and I can't see it anywhere.

Are they still supporting this?

Upvotes: 45

Views: 30427

Answers (7)

Dai
Dai

Reputation: 155290

As of May 2022, it's still convoluted.

TL;DR:

For IPN History, try https://www.paypal.com/us/cgi-bin/webscr?cmd=_display-ipns-history

For IPN Settings, try https://www.paypal.com/cgi-bin/customerprofileweb?cmd=_profile-ipn-notify


Also, a few reminders:

  • PayPal IPN is a completely separate feature from PayPal Webhooks.
    • Even though it's the exact same concept (argh!).
  • PayPal IPN is associated with your normal/business PaypPal account. It is is not a part of the PayPal Developer experience.
  • Also, PayPal IPN is now clearly deprecated, if not effectively obsolete, so if your application code is still reliant on PayPal IPN you really should update it to use PayPal Developer APIs and the Webhook service instead.

Anyway, here's the steps I took to find it today on 1st May, 20222:

  1. Start off on your PayPal Business Account Dashboard page:

  2. Use the top-left menu to go to Account Settings:

  3. On the Account Settings page, look for "Notifications" in the left-side menu:

  4. Then you'll see the link to PayPal Instant Payment Notifications.

    • Annoyingly, they don't use the term "IPN" so Ctrl+Fing for that won't work.
    • enter image description here
  5. Click the "Update" link (even though we aren't updating anything: we just want to see IPN History), and you'll be taken to a page belonging to Olde PayPal just with a new header:

  6. And the link to the History page is disguised in the page's text:

  7. And you'll be welcomed back-in-time to 2005 with a page that looks like this:

    • enter image description here

Upvotes: 1

SubGothius
SubGothius

Reputation: 914

The current PayPal for Business interface only provides a way to access IPN History if you have manually configured IPN in your PayPal account settings. In this case, you'd go to [your name] > Account Settings > Notifications > Instant Payment Notifications (click Update here), then the explanatory text there will include a link to the IPN History page.

However, that link would not appear if you have not manually configured IPN -- e.g., when your ecommerce platform automatically transmits IPN parameters to PayPal for each checkout. While you could manually enable IPN with a dummy Notification URL in order to get the IPN History link, this could result in PayPal completely disabling IPN for your PayPal account if they try sending any actual notifications to that dummy URL.

In that case, you can use this link to access IPN History directly once you're already logged into PayPal:
https://www.paypal.com/cgi-bin/webscr?cmd=_display-ipns-history

Note that if you have not manually configured IPN in PayPal, you will see a notice in IPN History saying, "The IPN feature is turned off. You must turn on IPN in order to create history data." That notice is irrelevant if your ecommerce platform specs IPN dynamically for each checkout; in that scenario, you can still view/search your IPN History without manually turning on IPN there.

Upvotes: 78

Tahi Reu
Tahi Reu

Reputation: 590

2020

Sitemap (Footer) -> Instant Payment Notification (IPN) history (under "Transactions")

Upvotes: 6

Erlisar Vasquez
Erlisar Vasquez

Reputation: 460

In the latest UI: Settings > My Selling Tools > Instant Payment Notifications click "Update". You will see a link there called "IPN History page".

Upvotes: 1

pekomurk
pekomurk

Reputation: 131

More menu -> Site map -> Transactions -> IPN History

Upvotes: 13

Machavity
Machavity

Reputation: 31654

It's still available in the same place. If you want to navigate to it

  • Log in
  • Profile link (white bar up top)
  • IPN settings
  • History link on this page

Currently it's directly at https://www.paypal.com/us/cgi-bin/webscr?cmd=_profile-ipn-notify (provided you're logged in)

Upvotes: 5

Related Questions