#dominikganic_best-practices
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1351142301111418964
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- dominikganic_best-practices, 2 days ago, 25 messages
- dominikganic_unexpected, 4 days ago, 24 messages
- dominikganic_best-practices, 4 days ago, 31 messages
- dominikganic_unexpected, 5 days ago, 33 messages
- dominikganic_best-practices, 5 days ago, 29 messages
- dominikganic_unexpected, 6 days ago, 13 messages
I would love to have, that if a subscription payment has failed, because of required user action, that stripe automatically changes the state of the subscription to "unpaid" when the customer hasn't paid the "required action payment intent" for this subscription with a 3d secure card after 7 days.
But what happens now is:
The subscription remains "past_due". When the next billing cycle hits, it cancels the subscription.
The problem: Unpaid state will never be set to this subscription
Subscription: sub_1R3axHLZihhBkt1cajng1wKZ
This subscription is now 5 days before cancellation in the test clock and still "past_due" and not "unpaid" - what I've expected.
How do I handle retry policies on subscriptions, which invoices -> payment intents are in state "requires_action"? Stripe ignores them and doesn't retry anything.
that's expected, Because the Customer need to complete the 3DS action
requires_action, isn't a failure payment method
Yes, that might be okay, because any other retry makes no sense when user action is required.
But can I somehow change the subscription state to "unpaid", when the customer hasn't completed the intent within 7 days?
Currently, when a subscription is unpaid, we "lock" the users dashboard so he can't access it anymore until he has paid.
14 days after unpaid, we automatically cancel the subscription (using automations)
You can manage that via your Stripe Dashboard here:
https://dashboard.stripe.com/settings/billing/automatic
But in this case, it will remian a full month "past_due" (which is still accessible)
Refer to the section Manage failed payments
Hm I can't modify it here, as I'm using currently automations
AH then you should be able to configure something like this via automation, right ?
I have one automation set:
- Subscription Payment has failed
- Start Retry Policy
- Wait 7 days while retry policy takes action
- Set the subscription to "unpaid"
- wait 14 days
- cancel the subscription
This works fine for failed payments, but not for required actions on invoices
Ah, I have found some good settings, sorry!
I will try them quick ๐
Didn't notice that, my bad !
Thanks for reaching out this link, that helped me in the section with "retry rules for failed payments with 3dsecure"
Have a nice day ๐