#edutomesco
1 messages · Page 1 of 1 (latest)
hi there,
Could you please give more context about your request?
If you are looking for subscription, here is a guide on how to do it
https://stripe.com/docs/billing/subscriptions/build-subscriptions
Here is an integration design overview:
https://stripe.com/docs/billing/subscriptions/designing-integration
I want to know if i have subscriptions monthly or yearly and now i have a product for monthly and another for yearly there is any possibility to Stripe manage this recurrence?
yes using subscription, you can follow the links I shared above
but they don't specify how to do this difference between monthly and yearly
so the think i want to have basic, smart and production plan each three can be monthly or yearly
Here is couple of example of recuring pricing models and how you can create them using Stripe Dashboard or API
https://stripe.com/docs/products-prices/pricing-models
Hope that could help you
Thank you
You're welcome 🙂
so excuse me
if I have a product that combines 3 different prices it's better to have different products for yearly and monthly recurrence
I mean for a subscription its mandatory that all prices have the same interval recurrence
That is mandatory yes.
You don't have to use different Products if you want, you could have one Product with 3 Prices, and then create a Subscription passing those 3 Prices
often though it can make sense to use different Products, because the description of the Product is what appears to the customer on Invoices etc.
So then I need to separate if the invoice name it's described by the product description
Another question, the checkout session tool it's possible to use for subscriptions with multiple prices associated?
and for usage type models?
yes, you can pass multiple things to the line_items parameter when creating the CheckoutSession.
I don't see why not
I mean when I create my table of prices
the just appear my licensed prices
not the metered ones
ah right, I was wrong, it doesn't support it then. https://stripe.com/docs/payments/checkout/pricing-table#limitations has more info.
So then I have to code my own table product and then redirect to the checkout right?