#Vilius_Siuksteris
1 messages · Page 1 of 1 (latest)
Should we send tax rate ID when creating Stripe checkout to make sure tax applies?
Yes. See: https://stripe.com/docs/payments/checkout/taxes?tax-calculation=tax-rates
If so, this would require us to know customers country prior to redirecting customer to checkout
Generally, yes. Although you could use thedynamic_tax_ratesparam: https://stripe.com/docs/payments/checkout/taxes?tax-calculation=tax-rates#dynamic-tax-rates
Alternatively, you enable Stripe Tax on your sessions to automatically calculate and collect tax according to your registrations and your customer location: https://stripe.com/docs/payments/checkout/taxes?tax-calculation=stripe-tax
Ok, so just to confirm if I get this right. We can create any number of rules and we should send all those rules on checkout session, this way, Stripe will determine which tax rule to apply depending on country (or state in case of USA)
Yes you can pass n Tax Rate objects (representing each country you are required to pay tax in, for example) and Checkout will apply the rate (if any) that matches the address input byu your customer
Great, thank you!