JDBC Driver for Zoho Inventory

Build 22.0.8462

TaxAuthorities

Read, Create, Update and Delete Tax Authorities.

Table Specific Information

Select

The driver 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 driver.

  • Id supports the '=' comparison.

For example, the following queries are processed server side:

SELECT * FROM TaxAuthorities WHERE Id = 3350895000000089001

Insert

Insert can be executed by specifying the TaxAuthorityName 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 TaxAuthorities(TaxAuthorityName) VALUES ('newtype')

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 TaxAuthorities SET Description = 'desc', TaxAuthorityName = 'newtype' WHERE Id = '3297210000000091004'

Delete

Delete can be executed by specifying the Id in the WHERE Clause For example:

DELETE FROM TaxAuthorities WHERE Id = '3350895000000089001'

Columns

Name Type ReadOnly References Description
Id [KEY] String True

Id of the TAX authority

Description String False

Description

RegistrationNumber String False

Registration Number of the Tax Authority

RegistrationNumberLabel String False

Registration Number Label of the Tax Authority

TaxAuthorityName String False

Name of the TAX authority

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462