#inderjeet-Subscription
1 messages · Page 1 of 1 (latest)
Hi there, so you want to get notified when the subscription is automatically renewed (i.e., the invoice is paid)?
yes
There is another event type called invoice.paid https://stripe.com/docs/api/events/types#event_types-invoice.paid which will be fired when an invoice payment attempt succeeds or an invoice is marked as paid out-of-band.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Can we also use case 'invoice.payment_succeeded'
If you don't have out-of-band payments, then yes you can use invoice.payment_succeeded as well
Out of band payment means?
Meaning payment outside Stripe.
I do payment only in stripe.
I see, then you can listen to either or these two events. But I'll recommend invoice.paid as it covers more scenarios.
Okay Thank you