#zach_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/1281631419751337985
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- zach_ubb-credit, 20 hours ago, 38 messages
Hello
hello again bismarck ๐
You can backdate the start of a Subscription but I don't beleive it will pick up past created usage, however I can't remember 100% on that so I'd recommend testing that first. You backdate a Subscription via https://docs.stripe.com/api/subscriptions/create#create_subscription-backdate_start_date
ooh i did not see this additional parameter that is interesting
thank you for pointing me to that, that may achieve one of my issues
let me bounce this entire scenario against you if you dont mind
- had customer subscribed for all of august
- Stripe auto canceled the subscription on august 31
- it sent an august invoice to customer which is what wasnt paid by customer
- since then customer has been sending september usage (which hasnt been charged because no subscription linked for product)
Now what I need to do is two things
the august invoice somehow has the wrong billing anchor date, im not sure if related to the cancellation or why it is that way yet.
but fundamentally i need to provide customer with 2 invoices
1 for August 1-31
2 for September 1- (today, eventually the EOM)
it sounds like potentally i can use this backdate_start_date to achieve #2
how can i achieve #1? if at all possible, which is basically to alter the billing date of an existing unpaid invoice
Yeah for #1 that's not possible
Finalized Invoices are frozen and can't be updated
So you either create a new one-off Invoice
Or, in the future you change your Billing Settings so that cancellation doesn't happen automatically here and you handle cancellation yourself so that you have more flexibility with the Subscription
Can you tell me how to do that?
"change your Billing Settings so that cancellation doesn't happen automatically here"
Sure, go to https://dashboard.stripe.com/settings/billing/automatic in your Dashboard and you can control what happens after all retries expire
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
thank you!