#bkrnetic-tax
1 messages · Page 1 of 1 (latest)
👋 Happy to help
Are you referring to the Tax ID registration in this page? https://dashboard.stripe.com/test/settings/tax
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
your link opens dashboard, I'm referring to this one: https://stripe.com/docs/tax/set-up
You have to add the automatic_tax attribute for invoices, payments intents and so on
okey, and then Stripe will take care of calculating the tax and showing proper prices on the invoices?
proper prices = proper amount that is charged based on customer's tax?
It does for us, please note, that you'll need to activate Stripe Billing you want to apply automatic tax for subscriptions too
Thanks @hushed mural for answering. After setting up the Tax information as described in this page https://stripe.com/docs/tax/set-up and add automatic_tax[enabled]=true in your integration, Stripe will calculate the tax for you
But the tax id must be set on customer that is being charged, am I right?
I think where the confusion comes from
Stripe has two different Tax products
One is Stripe Tax (automatically done by Stripe) and another is Tax Rate (manual tax done by you)
ohh.. ye, I guess I'm talking about Tax Rate
because I'm referring to the scenario where customer wants to be charged within his country for the product he buys, therefore we don't charge him anything. And vice versa
are we on the same page now?
Which integration are you using?
Currently none, we are doing research to give our client a proper estimation.
I have experience with custom integration via code.
If you use Tax Rates, then Tax Rate Create API will be used to create tax rate first, then use it on the product: https://stripe.com/docs/billing/taxes/tax-rates
With Tax Rates, you will need to determine and handle the logic when to apply tax by yourself. If you do not wish to handle this on your own, I'd recommend using Stripe Tax (automatically done for you): https://stripe.com/docs/tax
@potent nebula Let's use this thread for discussion:
Hello, is it possible to add multiple options during the in-app checkout form?
For instance, we have 3 subscriptions plans where users subscribe to monitor X vehicles:
- Basic (10 vehicles) - 10 €
- Advanced (100 vehicles) - 90 €
- Pro (1000 vehicles) - 900€
For each plan, customer can add X vehicles per specific price. Say 1€ per vehicle. If customers needs 110 vehicles, the most suitable option is Advanced + 10 vehicles, which will cost him 90 + 1x10 = 100 €.
Is there a way to allow customers to select such options during checkout screen? I couldn’t find such scenario in the docs and I would appreciate if you gave me sources to check out.
Stripe doesn't handle such scenario. Your system should handle the recommended plan to the user
Okey, thanks! I think that I've acquired all the info necessary. I will dive deeper into it myself to gain a better understanding of different options. Thanks!
No problem! Happy to help 🙂