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
Zoho SalesIQ Connector can be used to integrate Zoho SalesIQ API in your App / BI Tools. You can exchange data on Chats, Visits and more.
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
Zoho SalesIQ Connector can be used to integrate Zoho SalesIQ API in your App / BI Tools. You can exchange data on Chats, Visits and more.
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:

Get Departments

List all departments

SELECT * FROM Departments

SQL Server

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

Get Departments

List all departments

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

EXEC (@MyQuery) AT [LS_TO_ZOHO_SALESIQ_IN_GATEWAY];