Reputation: 63
Is it possible to control the charge date in Stripe? For example, we need to charge:
Is that possible to have all these charges in the same subscription? If so how to do it with Stripe APIs?
Upvotes: 0
Views: 294
Reputation: 2915
When you set up a subscription with Stripe, you define price and interval they are charged. There is an option to have a trial period, so that you can have the first charge delayed - but beyond that there are not other options. Note that subscription plan details (price, interval, etc.) are, by design, not editable
In order to implement the business rules you have listed, you will need to implement that yourself. You can do so by:
There may be some services (such as Azure's Logic App Service) that could help you implement this business process but you won't be able to do it with just Stripe.
Upvotes: 1