#Fireenn
1 messages · Page 1 of 1 (latest)
Question might be a bit unclear, but I'm trying to figure out whether stripe reverts a subscription back to the previous values, if a transaction fails and the customer has not provided a new payment method or made the existing payment method available to be charged.
or would that be left to the developer to revert a subscription on stripe to previous values if an invoice is left in an unpaid or voided state
What is the Update doing to the Subscription, let's start there
I have a subscription product and I'm updating the quantity on it
Okay so that will mutate (change) the Subscription. Do you configure your update to bill immediately for the change?
So yes, the Subscription will be updated and then the Customer will be invoiced. If their payment fails it will be up to your integration to handle any changes that should be made to the Subscription as a result.
okay thanks