Reference

Table Departments


Description

No description available

Supported Operations

Below section contains supported CRUD operations. Each operation is executed by some EndPoint behind the scene.
Method Supported Reference EndPoint
SELECT get_departments
INSERT
UPDATE
UPSERT
DELETE
LOOKUP

Examples

SSIS

Use Zoho SalesIQ Connector in API Source component to read data or in API Destination component to read/write data:

Read from Departments table using API Source

API Source - Zoho SalesIQ
Read and write Zoho SalesIQ data effortlessly. Integrate, manage, and automate chats and visits — almost no coding required.
Zoho SalesIQ
Departments
Optional Parameters
LastSyncTime
SSIS API Source - Read from table or endpoint

Read/write to Departments table using API Destination

API Destination - Zoho SalesIQ
Read and write Zoho SalesIQ data effortlessly. Integrate, manage, and automate chats and visits — almost no coding required.
Zoho SalesIQ
Departments
Select
Optional Parameters
LastSyncTime
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

Read departments

<p>Reads all departments configured in the Zoho SalesIQ account. This list includes department names, IDs, and status, which are essential for routing chats and organizing operators.</p> <p>The <code>Departments</code> table allows you to view the organizational structure used for chat distribution.</p>

SELECT * FROM Departments

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Read departments

<p>Reads all departments configured in the Zoho SalesIQ account. This list includes department names, IDs, and status, which are essential for routing chats and organizing operators.</p> <p>The <code>Departments</code> table allows you to view the organizational structure used for chat distribution.</p>

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Departments';

EXEC (@MyQuery) AT [LS_TO_ZOHO_SALESIQ_IN_GATEWAY];