#initialed85
1 messages · Page 1 of 1 (latest)
Hi! Let me help you with this.
You can create a recurring Price with 2 year cycle. Have you tried this?
i get this when trying to create a price for a product:
Ok, I think there might be a limitation.
The best way go solve this then is to create your own billing engine that will create Stripe Invoices every 2 years. Or you can adjust your billing cycle to be once a year
| create your own billing engine that will create Stripe Invoices every 2 years
scary- we already we had one teeny tiny bug in our code that slugged some poor guy $1300 when it should have been a lot less lol so i find myself scared of us being responsible for the code that has the power to do something repetitively
but okay no stress, i appreciate the acknowledgement that it's a limitation, i can work with that!
Happy to help!
https://stripe.com/docs/billing/subscriptions/subscription-schedules#managing
could i maybe do something clever with this?
yearly subscription, bill the customer for the two year amount, have a phase that means the next year is "free" etc etc
Subscription Schedules can get complicated very quickly. You will need to build some kind of mechanism to always interchange these 2 phases (1-year-for-price-of-2, free). It's easier to create a periodic job that will create an Invoice every 2 years on your own.