2

I have created a plan with subscription amount of 15 dollars for a month of duration using subscription API from the backend. When a customer subscribes to it, next monthly invoice for 15 dollars is automatically created. Now, At the backend admin panel, I must provide an option to change the subscription amount dynamically and when changed, all the upcoming invoices of customers should be updated with the new subscription amount. And whoever subscribes must be subscribed with the newly updated amount.

The problem is stripe doesn't allow us to update the subscription amount for the created plans. For every amount change, a new plan can be created but how to switch all the existing customers to the new plan. If the previous subscription end date has not expired, they must not be charged for a plan change. Can anyone provide a solution to solve this issue?

Deepa
  • 65
  • 1
  • 7

1 Answers1

4

You have two options:

1) by switching the plan to which a customer is subscribed. read more

2) by changing the quantity of a plan read more

Hope it helps

Dmitry Grinko
  • 13,806
  • 14
  • 62
  • 86