#akintouch
1 messages · Page 1 of 1 (latest)
👋 happy to help
can Stripe reuse a previous intent or allow it in some way during the subscription workflow?
no once an intent is used it's no longer valid
Is pausing payment collection on subscriptions before processing the upgrade would work?
totally not related to the issue you're trying to solve
Pausing the payment collection would allow to charge the intent and manually and mark the manual invoice as paid, instead of the stripe workflow doing it with a new intent
no once an intent is used, it's no longer valid
The intent has a different status. Once it's not charged, it's still usable and captured later. Pre-auth is an example
ok, but that's not the purpose of the question then, as explain I want to pre auth a payment intent and reuse it during the subscription upgrade process
so it's not charged or consumed in my case
that's not possible
what you can do instead is create a separate Payment Intent, once it succeeds you create a Customer Credit Balance, and then you upgrade the subscription. By default any invoice will use any available Customer Credit Balance to pay the invoice
that's the closest you can get to the integration you're hoping for
ok seems clear thanks for times