TaxGroups
Read, Insert, Update and Delete Tax Groups.
Table Specific Information
Select
The 本製品 will use the Zoho Inventory API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client-side within the 本製品.
- Id supports the '=' comparison.
For example, the following queries are processed server side:
SELECT * FROM TaxGroups WHERE Id = '3350895000000089001'
Insert
Insert can be executed by specifying the TaxName and TaxPercentage column. The columns that are not read-only can be inserted optionally. Following is an example of how to insert into this table.
INSERT INTO TaxGroups (TaxGroupName, Taxes) VALUES ('Cost Order', '8937927392')
Update
Update can be executed by specifying the Id in the WHERE Clause. The columns that are not read-only can be Updated.
For example:
UPDATE TaxGroups SET TaxPercentage = '20' WHERE Id = '3297210000000091004'
Delete
Delete can be executed by specifying the Id in the WHERE Clause
For example:
DELETE FROM TaxGroups WHERE Id = '3350895000000089001'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Id of the Tax Group | |
TaxGroupName | String | False |
Name of the tax group to be created. | |
TaxGroupPercentage | Double | True |
Tax group percentage | |
Taxes | String | False |
Comma Seperated list of tax IDs that are to be associated to the tax group. |