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
| Optional Parameters | |
|---|---|
| LastSyncTime | |
Read/write to Departments table using API Destination
| Optional Parameters | |
|---|---|
| LastSyncTime | |
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];