#sarvesh3742
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- sarvesh3742, 14 hours ago, 43 messages
- sarvesh3742, 21 hours ago, 18 messages
- sarvesh3742, 5 days ago, 25 messages
👋 How can I help?
how to create a subscription - recurring payment failed case in test mode and how to setup 7 days grace period for user on payment failure?
which webhook event needs to register for it? invoice.paid or any other?
invoice_payment_failed?
For failed cases, the Decline after attaching test card can be used: https://stripe.com/docs/testing#declined-payments
how to setup 7 days grace period for user on payment failure?
Payment failure on initial or recurring payment?
which webhook event needs to register for it? invoice.paid or any other?
What do they need to register for? Can you share what you would like to achieve?
payment failuare on monthly recurring payment
we want to give 7 days grace period so wait for payment from Streipe
After initial successful payment, your system can update the default_payment_method of to Decline after attaching test card. In the next billing cycle, payment will fail
we want to give 7 days grace period so wait for payment from Streipe
You can configure in https://dashboard.stripe.com/settings/billing/automatic
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Stripe will use the retry policy as how the subscription status will become after exhausting all the retries
ok, so what status will get from the webhook response to process it
invoice_payment_failed will give status of payment failed case and invoice.paid will give status paid after it is captured in next 3/5/7 days?
invoice.payment_failed will indicate every payment failure of the invoices.
After the payment retries are exhausted, customer.subscription.updated event will update to the corresponding subscription status in the Dashboard
ok