#mboras_webhooks
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/1370314360014110742
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- mboras_api, 13 hours ago, 22 messages
?
You should have access to that parameter. It'll just not be typed in your SDK
automatic_tax was an additive parameter, not a breaking addition. So should be available on all API versions
That, or you can just ts-ignore
ok
tnx @bronze isle
I'll now test this
please be here
};
const session = await stripe.checkout.sessions.create({
mode: 'payment',
line_items: generateLineItems(tickets, eventName, purchasedByName),
success_url: successUrl,
cancel_url: cancelUrl,
payment_intent_data: {
description: getPaymentDescription(tickets, eventName, purchasedByName),
},
locale: 'en',
metadata,
...determineCustomerInfo(customerId, email),
payment_method_types: ['card'],
// @ts-ignore
automatic_tax: {
enabled: true,
},
});
is this all that I need to do to enable automatic tax
in stripe dashboard
Did you add registrations for where you need to collect tax?
I see that now
aah I see this
that's what I need to do finish
so I need to add tax registration in production also?
Yes, they're separate across test/sandbox/live
Great!