#etienne_unexpected
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/1352659643398357014
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, can you share the request id where you saw this error? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
thank you. the request ID : req_4lLQLLEQSn6OLY
Taking a look here
Ok, I think it's related to Checkout specifically: https://dashboard.stripe.com/test/logs/req_4lLQLLEQSn6OLY and a limit to using Stripe Checkout. Trial end behavior of pause with metered prices is not supported with Checkout Sessions.
thank you for your answer. and is there a specific reason for this ?
Hi! Jumping in for my colleague. I presume it's because usage has occurred that needs to be billed for?
What is the outcome/situation you're trying to create here?
Ok, I had not noticed that during trial period, customer is still billed.
I thought billing was suspended.
We create a subscription with two products :
- a product with flat recurring price - the licence
- a product with recurring usage based price
We want to offer a free trial without credit card required . During this free trial, customer could use feature behind usage-based product
They're not charged during the trial period. Let me look at how your products/prices are set up.
OHHHHHHHH OK
So when a person signs up, you give them a 7 day trial on the $9/mo flat-rate price/product. At the end of that, you want to have it pause if they haven't paid, ya?
And then once they pay, and it's a 'full subscription' you can start accumulating meter usage, right?
Yes that's right we want to have it pause if they haven't paid.
But at checkout for free trial, I also prefer to add the usage-based product, to take advantage of Stripe's countdown on usage (but after checking, I see I can send event to a customer and set alert ? without product) and also in terms of ux, the user knows what the plan will be at the end of the trial period
Cool. You either have to not set it to auto-pause, or you need to not include the usage-based price until after the trial ends.
Ok thank you for your help !