We have an interesting billing model. It looks like a matrix. For example, for each additional PLAN, we provide a 5% discount. Now I am searching for a solution to achieve this pricing model in STRIPE with recurring payments.
Maybe somebody did something similar to this? Or have an idea how it is possible to do?
"You can either manage this by creating fixed price permutations of the bundles if the number of combinations is small, you you can manage this by applying suitable coupons behind the scenes: You could create 5/10/15% coupons and apply which is appropriate for the number of products the customer has. You don't need to share the details of the coupon with the customer. "
Not really. Because STRIPE does not let use two coupons at the same time. So users can not use coupon codes :(
After contemplation, I came up with a way to solve this problem. I will use stripe Graduate tier pricing, an additional table to track subscriptions, and WEBHOOKS. I really forgot how much useful information can webhook provide.