Taxes
Read, Insert, Update and Delete taxes.
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 Taxes 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 Taxes (TaxName, TaxPercentage) VALUES ('Cost Order', 29)
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 Taxes SET TaxPercentage = '20' WHERE Id = '3297210000000091004'
Delete
Delete can be executed by specifying the Id in the WHERE Clause
For example:
DELETE FROM Taxes WHERE Id = '3350895000000089001'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Tax id. | |
IsDefaultTax | Boolean | True |
Is Default Tax. | |
IsEditable | Boolean | False |
To check if tax/tax rate is editable. | |
IsValueAdded | Boolean | False |
Check if Tax is Value Added. | |
TaxAuthorityId | String | False |
ID of the tax authority. | |
TaxAuthorityName | String | False |
Name of the tax authority. | |
TaxName | String | False |
Tax name. | |
TaxPercentage | Double | False |
Number of percentage taxable. | |
TaxSpecificType | String | False |
Type of Tax For Indian Edition. | |
TaxType | String | False |
Type to determine whether it is a simple or compound tax. | |
CountryCode | String | False |
Country code. | |
PurchaseTaxExpenseAccountId | String | False |
Purchase Tax Expense Account Id | |
UpdateDraftInvoice | String | False |
Check if Draft Invoices should be updated | |
UpdateDraftSO | String | False |
Check if Draft Sales Orders should be updated |