#stealth_best-practices
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/1473346174227316767
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi there, can you tell me more about how you're currently updating tax behavior? do you have an example request ID that shows how you're updating it?
I don't really know how to get that? I am using stripe checkout sessions. Form is submitted to Stripe and then I wait for the webhook events
that is request ID of a session... req_F6pQqy8YjWxig0
sorry, I meant what kind of request you're making as a result of the webhook event to update tax behavior
When session is completed I want to update customer tax information before charge goes through.
I am waiting for CheckoutSessionCompleted event
ok, there's no way to postpone the charge of a completed Checkout Session, but you can update the customer's tax ID info using this Stripe JS method before checkout is completed https://docs.stripe.com/js/custom_checkout/update_tax_id_info
I'm not sure honestly, you would have to test it out to see if it's triggering the events you're looking for