#Gregg-sub-anchor
1 messages · Page 1 of 1 (latest)
hello, you can change the billing_cycle_anchor field on a Subscription https://site-admin.stripe.com/docs/billing/subscriptions/billing-cycle#changing
hey @quasi ocean I see that but isn't it only for "now"? For example, I have a billing cycle that ends on August 19th, 2023 but I want it to be August 1st, 2023. How can I change that date so it invoices on August 1st, 2023 instead of August 19th, 2023?
ah yeah it only works with changing the billing cycle anchor to "now" correct
checking one sec
yeah so one way to do this is to update your Subscription and specify a trial_end , so you give a "trial" until Aug 1st 2023, and then charges immediately after that ends
@quasi ocean thank you. The only problem with putting in the trial is that it counts as churn. So we'd have to remember to enter the trial very close to that trial end date.
👋 stepping in as hmunoz had to step away
Is the Subscription going to cancel after that billing cycle change?
Or just looking to change when it cycles going forward?
Hi! In this case it would be continuing, not canceling. So we'd just need to shift the dates.
Gotcha, in that case you want to use the Subscription Schedule API: https://stripe.com/docs/billing/subscriptions/subscription-schedules
You can easily set an end_date this way for your phase to change the billing cycle
Ok great, this looks like what I need. Thank you!