#Spica
1 messages · Page 1 of 1 (latest)
What APIs/UIs are you using to integrate with Stripe currently?
I am using stripe Api .. I do checkout create and I give it the price id of the stripe products I created and it generates for me a link that takes me to stripe payment link
Ok, so you have 2 options when it comes to tax calculations with Checkout: https://stripe.com/docs/payments/checkout/taxes
Stripe Tax will automatically calculate the tax due based on customer location, otherwise you need to manually provide the appropriate Tax Rates when you create the session
I want to provide the user a link like this
where he can enter the vat number then the taxes will be automatically calculated depending on the vat he entered
Well Stripe Tax doesn't calculate based on a VAT number, it's done based on customer location
But yes, Checkout supports Stripe Tax
Have you tried enabling Stripe Tax on your account and on a Checkout Session (via automatic_tax[enabled])?
You can set that up here: https://dashboard.stripe.com/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.
Including your tax registrations: https://stripe.com/docs/tax/set-up#add-registrations
I am checking it now .. thank you very much