past_due subscriptions and automatic retry payments in Stripe resulted in multiple subscriptions for a user #1040
-
We discovered a flow in our app that allowed a user to have two paid / active Stripe subscriptions at the same time (which our app wants to prevent):
The most obvious solution is to prevent the user from buying a new subscription if they are already subscribed ( Wondering if this matches what folks are currently doing or if anyone handles this another way. Is it worth adding a note about this case in the documentation on Happy to do that although I'm not sure how this works with other processors. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The joy of payments is in all these little edge cases! I would consider them not subscribed when they're past due and display a banner that they need to update their payment method to continue using the service. Once it's cancelled or unpaid on Stripe, then you can consider them fully inactive. |
Beta Was this translation helpful? Give feedback.
The joy of payments is in all these little edge cases!
I would consider them not subscribed when they're past due and display a banner that they need to update their payment method to continue using the service. Once it's cancelled or unpaid on Stripe, then you can consider them fully inactive.