#mboras_webhooks

1 messages ¡ Page 1 of 1 (latest)

ocean mantleBOT
#

👋 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.

fickle mirage
#

?

bronze isle
#

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

fickle mirage
#

aaah

#

so I should extend my type locally?

bronze isle
#

That, or you can just ts-ignore

fickle mirage
#

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

bronze isle
#

Did you add registrations for where you need to collect tax?

fickle mirage
#

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?

bronze isle
#

Yes, they're separate across test/sandbox/live

fickle mirage
#

nice

#

it works now

bronze isle
#

Great!

fickle mirage
#

tnx @bronze isle

#

that's it

#

I'm closing discord