Endpoint Gets record count for specific tag for module
Name
get_tag_record_count
Description
Add tags for specified module and specified record id(s). [API reference]
Parameters
| Parameter | Required | Options | ||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Name:
Label: module Module name for which you like to get settings |
YES |
|
||||||||||||||||||||||||||||||||||||||||
|
Name:
Label: Tag Id Use List Tags to findout Id for tag you like to query |
YES |
Output Columns
| Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
|---|---|---|---|---|
| Count |
DT_I8
|
bigint
|
If the column you are looking for is missing, consider customizing Zoho CRM Connector.
Input Columns
| Label | Data Type (SSIS) | Data Type (SQL) | Length | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Examples
SSIS
Use Zoho CRM Connector in API Source or in API Destination SSIS Data Flow components to read or write data.
API Source
API Source - Zoho CRM
Zoho CRM Connector can be used to integrate Zoho CRM API in your App / BI Tools. You can exchange data on Accounts, Leads, Contacts and many other modules.
Zoho CRM
Gets record count for specific tag for module
| Required Parameters | |
|---|---|
| module | Fill-in the parameter... |
| Tag Id | Fill-in the parameter... |
API Destination
API Destination - Zoho CRM
Zoho CRM Connector can be used to integrate Zoho CRM API in your App / BI Tools. You can exchange data on Accounts, Leads, Contacts and many other modules.
Zoho CRM
Gets record count for specific tag for module
| Required Parameters | |
|---|---|
| module | Fill-in the parameter... |
| Tag Id | Fill-in the parameter... |
ODBC application
Use these SQL queries in your ODBC application data source:
Gets record count for specific tag for module
SELECT * FROM get_tag_record_count
WITH
(
"module" = 'abcd-1234-module',
"tag_id" = 'abcd-1234-tag_id'
)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Gets record count for specific tag for module
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_tag_record_count
WITH
(
"module" = ''abcd-1234-module'',
"tag_id" = ''abcd-1234-tag_id''
)';
EXEC (@MyQuery) AT [LS_TO_ZOHO_CRM_IN_GATEWAY];