Where can I find the appropriate tax class identifiers in the Magento database?

When I create a product in Magento using the API, I need to specify a field called "tax_class_id". I want to find out which identifier I need to provide for the interest rate of VAT, for example, 20% in Austria or 19% in Germany.

Where can I find these identifiers inside the database?

Side note: I really want to write an api extension that returns a list of percentages along with my tax class. If someone has an easier idea how to do this, everything will be fine!

+3
source share
2 answers

Firefox Firebug , , html.

, tax_class.

+10

tax_class.

SELECT * FROM tax_class
+1

All Articles