#ajay-subscription
1 messages · Page 1 of 1 (latest)
I have 5 subscription plans
And 10 features
Customer can choose any subscription plan along with any combination of features he want
Eg. Basic Plan $10
Features can be like email,sms
So
Customer 1 Basic Plan = $10
Customer 2 Basic + email = $13
Customer 3 Basic + sms = $15
Customer 4 Basic + email + sms = $18
like that I want recurring payments
OK, so I guess the basic plan is a recurring product, are email and sms also recurring products?
sure
Ok, Stripe can support multiple products in one subscription, you can learn more here https://stripe.com/docs/billing/subscriptions/multiple-products
I know about this
But it is not good idea to create so many subscriptions aint it?
Eg
Basic $10
Basic + email $13
Basic + sms $15
Basic + email + sms $18
example is just showing 1 plan and 2 features/ addons
now consider same for 5 plan and 10 features
I'd say each customer has only one subscription in the use case that you have described.
Here's my understand -> you have 3 products -> Basic Plan 10/mth, Email 3/mth and SMS 5/mth
So you can create one subscription for customer 2 with the combination of Basic Plan + Email, and the customer will need to pay a monthly $13 subscription,
Another subscription for customer 3 with the combination of Basic Plan + SMS, and the customer will need to pay a monthly $15 subscription,
And for customer 4, it's Basic Plan + SMS + Email, so a monthly $18 subscription.
You only create subscription when your customer is able to subscribe to your service, and you can use the existing products to mix and match.