#blakemaczka
1 messages · Page 1 of 1 (latest)
Hello 👋
We typically recommend collecting the tax info prior to creating the sub
https://stripe.com/docs/billing/taxes/collect-taxes
Can I charge sales tax for a new location after an invoice is finalized? For example, if I create an invoice with no sales tax, then collect the tax info and update the subscription, the user pays the no-tax-invoice, can I then programatically charge the tax amount? It seems like stripe.tax.Transaction.create_from_calculation would do that but at least in test mode I don't see that collecting any money from the customer
Once the invoice has been finalized there's no way to update it. Being able to update the first invoice of the subscription depends on the collection_method you set when you create a subscription
https://stripe.com/docs/billing/invoices/subscription#update-first-invoice
Got it. There's no way to use ransaction.create_from_calculation after the invoice is finalized either?
Tax Transaction objects allow you to "record" the tax you've collected from your customers. You can't use them to charge tax to customers.
It's for reporting purposes.
ah okay got it