#acpnayak_api
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/1217070139325808730
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi! sure, yes. For tax are you calculating that yourself or do you want Stripe to calcualte it?
myself
as in you know the exact dollar amount of tax you want to charge? or you know the tax rate(23% for example) you want to charge? which one?
Like I have subtotal, then custom tax and then discount
Something like this
Now when I am charging stripe is showing 1060only
then you add it as an Invoice Line Item directly. You can't add your own tax amounts to the fields that are for amount_tax etc, those are only populated when using our own Tax solutions like automatic_tax or the TaxRates API
how can I pass this IVA and IRPF information, so that similar breakup is shown in stripe invoice
you just add an Invoice Line item , using a Product with a description that you can set as "Tax" or "IVA" or so on. https://docs.stripe.com/invoicing/integration#create-invoice-code There's no deep integration unless you are using Stripe's actual tax products
thanks!