#.abishek
1 messages · Page 1 of 1 (latest)
wouldn't the customer pay only a single price for the subscription right> why would there be multiple items?
I mean you could create a Subscription with 10 different recurring prices if you want. that's completely up to you. Then the customer pays the sum of all these prices.
what scenario would that be where customer pays for multiple recurring prices?
again it's up to you. maybe you sell multiple recurring products, and one of your users bough 5 of them. so you create one subscription with 5 prices
you can learn more about this here: https://stripe.com/docs/billing/subscriptions/multiple-products
ok
so, if on the stripe checkout I have 2 recurring prices, will they be created as 1 subscription or 2?
if you create one Checkout Session with 2 recurring price, then that will be one subscriptions with 2 prices
but if you want to create two separate Subscriptions that's also possible
- create a Checkout Session with one price => that creates the first Subscriptions
2.then later use the create Subscription endpoint using the saved payment method of the customer => that creates a second Subscription
ok, so not with a a single checkout session
correct, that requires more work
ok