#taviksha-akar_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/1305764071358074920
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hey there? Can you please help me with this.
Are you using Stripe Tax?
Yes
No there's no option to exclude tax on certain product if you are using automatic tax calculation. You can turn off Stripe tax and manually set tha tax_rate on the invoice line items instead.
Manually set the tax_rate means?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
But when subscription is created, the invoice is created by stripe only so how to pass tax_rated on subscription create? And as we don't want tax on specific products, do we still need to pass tax_rates or can we pass it blank to not apply tax on the products?
https://docs.stripe.com/api/subscriptions/update#update_subscription-automatic_tax you can turn off automatic tax from subscription level
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Listen to invoice.created event, and edit the draft invoice by updating the tax_rate on the approriate invoice items https://docs.stripe.com/api/invoiceitems/update#update_invoiceitem-tax_rates
Alternatively, you can also set the tax rate on the subscription items so that you don't need to update them on every invoices
details in https://docs.stripe.com/billing/taxes/collect-taxes?tax-calculation=tax-rates#static-configuration
So if i choose tax rate option than I need to turn off stripe tax ??
Can they both be used together ? So where I need to pass tax_rate i can use it otherwise stripe tax will work?
No
OK and from where I need to turn off stripe tax?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
No, not on update, I need to set it on creation.
You'll find the same param on subscription creation API.
And if we are creating one time invoices which is created seperately to take some charge then how to set stripe tax off for that?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Our API reference is comprehensive, you can share it to your developers and they'll be able to self-serve and find the relevant parameters