#snowgears_unexpected
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/1217856711004520498
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
is this what you are looking for?
No that's your metadata
I just need the payment intent id of invoice id (pi_123 or in_123)
ah gotcha, sorry about that
shoot sorry
pi_3OssYzJjc0Pct6n01DsgLKyF
I really appreciate you helping me out with this
Thanks for the ID, looking in to this
Thank you so much! I really appreciate it
ah, did you use this tax calculation API before creating that payment intent? https://docs.stripe.com/api/tax/calculations
If so, this will actually be a better question for our support team. This server can help with finding the values to pass certain data, but if you are passing in correct data and getting the wrong calculation, that calculation is something our support team can look in to https://support.stripe.com/?contact=true
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
I did
const resp = await stripe.tax.calculations.create({
currency: "usd",
line_items: [{ amount: Math.round(totalAmount + amenities_price), reference: Math.random() }],
customer_details: {
address: { country: "US", state: shortState, postal_code },
address_source: "billing",
},
});
Okay so I should contact support instead of this?
Yeah, I think they can help look in to why we apply the taxes that we did