#alex.esch
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.
- alex.esch, 6 hours ago, 9 messages
- alex-subscription-paymentintent, 19 hours ago, 14 messages
- alex.esch, 23 hours ago, 72 messages
Hello
hello
You cannot update a subscription in incomplete status in a way that results in a new invoice or invoice items. Only minor attributes, like metadata or default_payment_method, can be updated on such subscriptions. in
my flow is
create subscription
- get related invoice
- get paymetintent id
on checkout frontend, i need to change the quantity
is there are any way to change the quantity without creating new subscription?
Not while the Subscription is initially incomplete, no.
Why do you want to do this?
well,
we are selling bundles by using payment intents
but now, we want to sell subscription as part of the bundle which includes subscription plus somo other products
so, i'm creating a new subscription and using payment intent from the invoice to process the checkout by using stripe elements
So, one of our features is the indication of the quantity of purchased bundles
So you are saying this requires update because while on your page where you have already rendered Payment Element the customer might choose a different quantity?
yes
Okay so yeah in that case you want to use the deferred-intent flow: https://stripe.com/docs/payments/accept-a-payment-deferred?platform=web&type=subscription
So you don't actually create the Subscription here until your customer submits the amount/quantity they indicate.
ok, understood
thank you