# Why is there no tax on my Managed Payments transaction?

Your Managed Payment transaction may show no indirect tax collected if Stripe determined no tax should be added.
To find the reason why no tax was added, follow these steps to locate the transaction's `taxability_reason`.
1. Retrieve the [Invoice](https://dashboard.stripe.com/invoices) from the Dashboard.
1. Open the Invoice object and check the API response.
1. Locate the tax result and find the `taxability_reason`.
1. Look up the value of `taxability_reason` in the table below.
   - The table shows common values, not all possible values.
- Value
- Description
---
- `product_exempt`
- Product is tax-exempt
---
- `reverse_charge`
- B2B reverse charge; buyer accounts for VAT
---
- `customer_exempt`
- Customer is exempt (set on the Customer)
---
- `not_subject_to_tax`
- No tax applies in this jurisdiction / transaction isn’t taxable
---
- `product_exempt_holiday`
- US sales tax holiday
---
- `portion_product_exempt`
- Tier rule, only part of the amount is taxable
---
- `zero_rated`
- Tax applies but at 0% rate
View [Zero-Tax Docs](https://docs.stripe.com/tax/zero-tax) for more details.