Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stripe subscription add-on's & features

Right now I have 3 types of subscription at my site:

  • Starter (10$)
  • Plus (15$)
  • Premium (19$)

Also I have few add-on's which user can add to his subscription, e.g.:

Subscription : plus

  • +feature 1(+10 $)
  • +feature 2(+10 $)

Total = 15$ + 10$ + 10$ = 35$.

User should be able add/remove features during his billing period or switch to another plan. Can you guys tell me how should I manage those features using Stripe.

like image 217
vromanch Avatar asked Jun 05 '15 12:06

vromanch


1 Answers

On Jan 30, 2017 Stripe released this functionality by supporting multiple plans for a single subscription.

More information

Unlike our multiple subscriptions on a customer capability, which generates an invoice for each subscription, putting multiple plans into a single subscription results in a single invoice each billing period that combines every subscription. Only a single payment for that invoice is required, reducing your costs and the number of charges your customer sees.

like image 200
BinaryMee Avatar answered Sep 19 '22 08:09

BinaryMee