#hugues9308_api
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/1268225863007207582
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Subscriptions are how you charge recurring payments with Stripe so that definitely makes sense there. Can you tell me more about what you mean by the one shot deposit?
Hi Pompey. The deposit is a one-time payment to be made immediately and ahead of the upcoming recurrent payments.
Is this an extra one time fee along with the first payment in the subscription, or is this just a one time fee and then a subscription starts at a later date?
A one time fee and then a subscription starts at a later date
Gotcha, in that case you can do a one time invoice payment or a payment intent payment and then use a subscription schedule to schedule when the subscription should actually start
In such a scenario, is there a Stripe object that can manage/aggregate both the one-time payment AND the subscription?
Not really unfortunately. You can add one time fees to the first subscription payment, but when the payment is being made before the subscription even exists there isn't a single object
That being said, all of these payments will be assosciated with the same Customer object. So you could list payments assosciated with the Customer
Could I generate a single annual invoice that would contain that one-time payment along with the recurrent payments during that year span?
Yes, an annual subscription can have one time charges added to it.
Can you give me a simple specific scenario of what you want this to look like? Like the user signs up on their page and then what is the one time fee, what is the annual fee, and when do you want them to pay each?
Well, it's rather a one-time fee (for e.g. $6) followed by monthly payments of $3
Furthermore, if the customer would modify her subscription during the year (for e.g. changing from the plain vanilla to the deluxe edition), I would expect another invoice to be issued.
Hi there ๐ taking over, as my colleague needs to step away
Let's start over. You've mentioned a lot of different billing model concepts at this point. Can you unify all of them into one concise summary? I still have no idea what you're trying to do
We're selling a service requiring a one-time fee ($6) changed immediately to followed by monthly payments ($3) starting on the 1st of the next month. Along this, we're sending an annual invoice comprised of the one-time fee and the monthlies in that year span. The one-time fee happens only in the first year of subscription.
You should look into Subscription Schedules: https://docs.stripe.com/billing/subscriptions/subscription-schedules
But do you agree with what Pompey said: A one-time fee made before the recurrent payments cannot be included in the Subscription object?
Yes
Also, can you confirm if an Invoice could be automatically issued each year and that would include the recurrent payments for that year span along with the one-time fee (if we're in the first year)?
If you read the docs on Subscription Schedules and implement it, yes