#beneordio_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/1301481471164416050
đ 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.
- beneordio_api, 16 hours ago, 24 messages
hi there!
I'm not sure I understand. can you calrify exactly what you are trying to do?
customer={{262153501__Customer_ID_Stripe__c}}&
line_items[0][price]={{259288780__ProductCode}}&
line_items[0][quantity]={{259288780__Quantity}}&
mode=subscription&
subscription_data[proration_behavior]=create_prorations&
subscription_data[billing_cycle_anchor]={{259288783__output}}&
success_url=
cancel_url=
payment_method_collection=always
i have created this webhook with zapier to create checkout session but we just noticed that there is no sales tax being added to the invoices
how do i need to amend my webhook to include the sales tax
you want Stripe to automatically compute the Tax for you?
if so, I recommend reading this guide: https://docs.stripe.com/payments/checkout/taxes
can i just add this to my webhook?
automatic_tax[enabled]=true
and then it will use my standard tax settings from my stripe account?
you need to add this line when you create the Checkout Session.
and you also need to setup tax registration here: https://dashboard.stripe.com/tax/registrations
Alright thank you!