#sukatoa-subscriptions
1 messages · Page 1 of 1 (latest)
hi, reading....
As I understand this, the recurring charge date (for monthly/yearly) -
by default will be the same date (as subscription created) the next month.
yes
Scheme1:
...
all correct yes
Scheme2:
The easiest way to do this is https://stripe.com/docs/billing/subscriptions/trials#combine-trial-anchor yep!
we don't expect any proration from 1st - 9th
unfortunately there has to be, if you try to disable proration you'll get an error from the API
so overall you would either just set the trial to always be the 10th from the start and skip that 'middle' payment, or you could use the trial as you do today, and then when the middle payment happens, immediately update the subscription (for example by listening to the invoice.paid webhook event) to to set trial_end: <the 10th> with proration_behavior:none
thanks much for the ultra fast response man!