Endpoint Add / Update Tags for records
Name
post_tags
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: Record Id(s) (comma seperated list) List of Record Id(s) you like to update |
YES | |||||||||||||||||||||||||||||||||||||||||
|
Name:
Label: Tag Id List of Tag(s) you like to add |
YES | |||||||||||||||||||||||||||||||||||||||||
|
Name:
Label: Overwrite Set this to overwrite exising tags for the record(s) |
|
Output Columns
| Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
|---|---|---|---|---|
| id |
DT_WSTR
|
nvarchar(255)
|
255 | |
| code |
DT_WSTR
|
nvarchar(255)
|
255 | |
| message |
DT_WSTR
|
nvarchar(1000)
|
1000 | |
| status |
DT_WSTR
|
nvarchar(255)
|
255 | |
| tags |
DT_WSTR
|
nvarchar(1000)
|
1000 |
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
Add / Update Tags for records
| Required Parameters | |
|---|---|
| module | Fill-in the parameter... |
| Record Id(s) (comma seperated list) | Fill-in the parameter... |
| Tag Id | Fill-in the parameter... |
| Optional Parameters | |
| Overwrite | |
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
Add / Update Tags for records
| Required Parameters | |
|---|---|
| module | Fill-in the parameter... |
| Record Id(s) (comma seperated list) | Fill-in the parameter... |
| Tag Id | Fill-in the parameter... |
| Optional Parameters | |
| Overwrite | |
ODBC application
Use these SQL queries in your ODBC application data source:
Update Tag(s) for exising records (add or overwrite)
SELECT * FROM post_tags
WITH(
module='Accounts'
, ids='1558554000105151002'
, tag_names='mytag1,mytag2'
, over_write='true'
)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Update Tag(s) for exising records (add or overwrite)
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM post_tags
WITH(
module=''Accounts''
, ids=''1558554000105151002''
, tag_names=''mytag1,mytag2''
, over_write=''true''
)';
EXEC (@MyQuery) AT [LS_TO_ZOHO_CRM_IN_GATEWAY];