#Teelu
1 messages · Page 1 of 1 (latest)
https://stripe.com/docs/api/tax_rates/create I dont see anywhere we can specify the taxable amounts
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yeah I don't think that's doable via tax rates. You would just have to adjust the percentage to account for this
Not sure what you mean. So if you want a tax rate to only tax 80% of the transaction and the tax rate is 10%, then you'd want to pass in a tax rate of 8%
Hmmm okay. I was wondering if Stripe Tax handles it any differently, or if its using the tax_rate objects as well with the approach you mentioned
I say that because the invoice will show the tax % used, which doesn't reflect that the rate might be higher but only applicable to a certain portion of the total
Ah you mean whether our automatic tax product handles this differently?
Correct. The approach I was thinking was either one of the two now
- the adjusted rate on the full amount
- the real tax rate shown with a total taxable amount which doesn't necessarily equal the subtotal
Got it. I'm not sure off the top of my head actually. I also have to step out, but @maiden cliff do you know if it's possible to only tax 80% of the total with automatic tax? Some states don't tax 100% of the total (I'm just learning this).
If you're using automatic tax our tax engine should take that kind of thing into account. Let me catch up with the thread...
Do you know which states are subject to this kind of thing?
Texas is one of those states for SaaS offerings
Texas is one of these states that considers SaaS as a taxable data processing service.
Data processing is 20% exempt from sales tax. In that case, Texas provides a 20% exemption on the total charge to the customer for a data processing service.
Another way to put it is that 80% of the total charge to the customer represents the actual taxable amount.
With Stripe Tax that should be automatically taken into account based on the tax category set on the Product: https://stripe.com/docs/tax/products-prices-tax-categories-tax-behavior#tax-category-on-product
Okay, but would it show the adjusted tax rate on the invoices? or have the actual rate with the tax calculated with 80% of the total
eg, tax rate of 10% on 100, only 80% being taxable
Does the invoice show 10% tax rate, $8 tax?
Or 8% tax rate, $8 tax?
I'm not sure. You should be able to test this in test mode to determine the behavior.
Okay I will go ahead and play around with that