#chris_subscription-billingcycle
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1486122662844567603
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
I don't really get what you are trying to do. Can you write a simple but concrete example of who pays what and when?
chris_subscription-billingcycle
sure : ) So a person signs up for a free 7 day trial of a $100 service, then on the 8th day they get charged the full 100, and then another 100 one month from the date they signed up for the trial
i tried talking the person wanting this out of it, but this is what he wanted
in my eyes they end up paying for the 'free trial', but whatever
ah yeah I see what you mean, so it's more a delayed payment for the first period lol
yes, exactly
yeah I don't think that's possible without using a SubscriptionSchedule to "reset" the period mid way and not prorate
I havent looked at that object. sounds like it might be overcomplicating the whole setup
what would you recommend?
I mean if you tried to convince them but they didn't listen I think it's your best option
Basically it's an API that lets you "schedule" changes to a Subscription over time
in your case you basically have a phase for the trial, a phase for the "partial month" and a phase that "resets the billing cycle anchor" to charge a full month
good grief
ok, at least its possible, i guess. lol Okay, thanks a lot, I appreciate it! : )
sure thing!
There's another easier hack where you have a trial period and then you add a one-time Price via add_invoice_items for the full cost of the month. It'll get automatically added to the Invoice after the trial
Downside is: separate Price id, no proration if they change their Subscription during the first cycle, no MRR, etc.
yes
just the first one.
Yeah that def sounds less complicated
although the cust is gonna be pissed to see theyre getting charged for a full mo plus the 'free' trial
so crazy
i think ill try the schedule suggestion and use this idea as a fallback
this last idea
yeah I mean I get it in a way, it's almost a "try it now, pay later" but it doesn't match how a lot of our UIs/docs think about a trial