#arvind_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/1295696959218257950
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi
I am trying to implement stripe tax in my dot net application
The stripe.net I am using is 41.23.0
my dot net version in 4.8
which stripe.net is the earliest version to support stripe tax?
It depends on what API you need exactly, but you need to check the changelog to identify the version that fits your need
We use payment intent to make first time and recurring payment
We have started spikes on it, the present implementation we have with making payment using payment intent. we make recurring payment with paymentmethod id
Could you please share some code snippets where you are using Stripe tax ?
we are not using stripe tax yet, we are plnanning too
Then, why not using the latest Stripe .net SDK ?
I am upgrading to latest stripe.net now
39.51.0 I believe: https://github.com/stripe/stripe-dotnet/blob/master/CHANGELOG.md#39510---2021-06-04
Stripe.net is a sync/async .NET 4.6.1+ client, and a portable class library for stripe.com. - stripe/stripe-dotnet
What's the exact issue?
trying to understsnad to implement stripe tax through payment intent we are using
Should be possible: https://docs.stripe.com/tax/payment_intent
But there's no automatic tax parameter on Payment Intents if that is what you're looking for. You use a completely separate endpoint
I understand, its not automatic, i have gone through the flow and ok to call tax api to calculate tax,
paymentintent will take any tax refence for the recurring payment?
I don't know what that means. What 'tax reference'?
When i make payment first time, i store PaymentMethodid which i use to make payment during recurring payment. When i use stripe tax, i'll calculate tax during checkout i undstand upto that point
but when making recurring payment from PaymentMethodid do i need to call stripe api to calculate tax during recurring payement or will i store any reference for tax and payement intent will deal with tax
You'd need to create a new tax calucation/transaction for each recurring payment, yes
oh..ok
General recommendation would be to use a Subscription for recurring payments which supports automatic tax calculation for each payment
and how to do that?
Anyway, its ok for me to upgrade stripe.net to the latest and look for this automatic tax for recurring payment
current stripe.net is 46.2.0
You shouldn't need to upgrade, the parameter was added many versions prior to 46.x.x