PayPal Subscription IPN (Instant Payment Notifications)

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Nikolay
Posts: 3
Joined: 30 Nov 2018, 15:45

PayPal Subscription IPN (Instant Payment Notifications)

Post by Nikolay » 30 Nov 2018, 16:16

Hi, I have a question about PayPal IPN. I'm creating payment extension for paypal subscriptions, but I'm not sure where to catch the paypal IPN notifications, so when a new subscription notification for the next billing cycle from PayPal is send to my shop I can update the order. Can I do it inside the extension (couldn't find something like that in the docs) or should I use a normal Laravel controller for this task? But if I use Laravel controller, how to initialize the order object by ID, so I can update it?

User avatar
aimeos
Administrator
Posts: 7881
Joined: 01 Jan 1970, 00:00

Re: PayPal Subscription IPN (Instant Payment Notifications)

Post by aimeos » 02 Dec 2018, 11:33

There's no need to do it separately. Use the URL of the "checkout update" component and you will get the notification via the updatePush() method of your service provider.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Nikolay
Posts: 3
Joined: 30 Nov 2018, 15:45

Re: PayPal Subscription IPN (Instant Payment Notifications)

Post by Nikolay » 02 Dec 2018, 17:59

Thank you ! Amazing package and support !

User avatar
aimeos
Administrator
Posts: 7881
Joined: 01 Jan 1970, 00:00

Re: PayPal Subscription IPN (Instant Payment Notifications)

Post by aimeos » 02 Dec 2018, 18:24

Like us on Github, Facebook and Twitter if you like Aimeos and spread the word by sharing posts and tweets :-)

One question: Do you create a new payment integration or are you using the Omnipay adapter which already supports recurring payments if the driver does?
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Nikolay
Posts: 3
Joined: 30 Nov 2018, 15:45

Re: PayPal Subscription IPN (Instant Payment Notifications)

Post by Nikolay » 03 Dec 2018, 07:47

No, I'm creating a new payment with a Laravel package I'm familiar with. I haven't worked with Omnipay yet.

Post Reply