#6ра_subscription-modeling
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/1283807426851897344
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
If it's usage based, how would there be any usage at the beginning of the first period?
Usage based bills at the end of the month because customer accumulates usage throughout month
I was thinking if there might be some workaround, like using a subscription schedule to avoid that $0 invoice. Is something like that not possible either?
I'm confused. What's your use-case? You said However, I need to figure out how to charge immediately instead of waiting until the next billing cycle. This doesn't sound like usage based billing at all. How would there be any usage immediately?
Like how would there be any usage to charge for at that point?
My use case is that a customer subscribes to monthly donations for various organizations. They choose, for example, 3 organizations and allocate 25% to the first, 25% to the second, and 50% to the third. I tried to set up this pricing model and set the record to $0.01, or 1 cent, because the customer selects how much they want to donate. This approach was intended to avoid creating a new price for each subscription under the product and to have only one price on Stripe, to which I pass the total amount donated to each organization.
Product = Organization.
Hm ok. And can these percentages change at any time? Also, can the donation amount change at any time?
Ok I recommend just doing inline pricing then: https://docs.stripe.com/products-prices/pricing-models#inline-pricing
This will bill at beginning of month like you want
And allows you to specify the exact amount per item
I will try this. TYVM
No problem