#shruti_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/1293499663797977126
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐
Instead, I want to create an invoice on 2024/10/31 for 2024/10/09 to 2024/10/31
You can't create an invoice at the end of the period of usage
However, one workaround is to set the billing_cycle_anchor when creating the Subscription
in the future (.e.g 2024/10/31)
billing_cycle_anchor property changes the date but also bills for like 2024/10/09 to 2024/11/09
is there any way in c# .Net Stripe API that I can generate the bill for the current month on the last day of month. I dont want to take payment in the advance. i want to charge later
No, this is how Stripe Billing works.
You can achieve this using workarounds
for example, create a 0โฌ Subscription, and you generate the invoice at the end of the month manually with the desired price
okay thank you