#.remoteboy
1 messages · Page 1 of 1 (latest)
Hello
Have you seen https://stripe.com/docs/billing/subscriptions/webhooks yet?
If not, definitely recommend reading that as it talks through each different Webhook.
In terms of renewals, the simplest one to listen for is customer.subscription.updated
However, you could listen for invoice.paid and invoice.payment_failed if you want to go that route.
cool. thanks.
Sure
does Stripe trigger an email to the customer if their payment fails, or is this something I should do from my end. apologies if this is a silly question - first time working with a subscription model
also, if i want to add an alert to the user dashboard to let them know that there is an issue, how do i generate a Pay Now link for them?
Hi 👋
I'm stepping in for my colleague who needs to go soon. Give me a sec to catch up
For the failed payments with Subscriptions, we have a doc specifically for that here: https://stripe.com/docs/billing/revenue-recovery/customer-emails
Can you descibe what you are looking for with the "Pay Now" Link?
provide a quick link for them to go and pay the invoice - would need to allow for them to enter new card details.
The Invoice object includes a link to a hosted invoice page where the customer can provide a new payment method.
https://stripe.com/docs/api/invoices/object#invoice_object-hosted_invoice_url
Perfect. Thanks so much.