#tutley
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- tutley, 23 hours ago, 8 messages
Not possible, the quanity needs to be a positive number
but you can specify action to set to overwrite the usage https://stripe.com/docs/api/usage_records/create#usage_record_create-action
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
What I'm trying to do is setup a subcription that has a $200 minimum, then $1 per credit from then on out. I was thinking I could have a one-time product for $200, then a monthly subscription for $1/credit. But the problem is how to transfer that first 200 credits.
Is there a way to set a minimum that only happens once (not monthly or yearly)?
I think I'll just have to maintain a balance on my side and only start to report usage after that balance has been exhausted
So you busincess model is a flat price + metered usage https://stripe.com/docs/billing/subscriptions/usage-based/pricing-models#flat-rate-metered-usage ?
The challenge is that the flat price is just one-time
not monthly
I think I'll just have to keep track of the balance so after the one-time fee they'll have a balance of 200 units in our app, then when those 200 units are exhausted, I'll start reporting usage
Ok, then you can create an one-off invoice to collect the $200, and create a metered usage subscription for your customer.