CreateContentTagsJob
Creates a job that performs one of the supported batch actions on content tags. Supported actions are delete and merge.
Stored Procedure-Specific Information
Zendesk allows only a small subset of columns to be used in the Exec query. These columns can typically be used with only the = comparison. This operation is allowed for logged-in users with the "Guide manager" role. For example:
To delete multiple content tags:
EXECUTE CreateContentTagsJob Action = 'delete', Items = '01HCENGV56Y1PSN4WSVJBDAV6F; 01HCEMHJMD340GHDQVSXXEVT2J'
You can merge content tags if you want to combine duplicate or related tags into a single tag without losing track of the content associated with each tag.
EXECUTE CreateContentTagsJob Action = 'merge', Items = '01HCENGV56Y1PSN4WSVJBDAV6F; 01HCEMHJMD340GHDQVSXXEVT2J', TargetContentTagId = '01HCENY64PNAWHT10SC3YF0GDM'
Input
| Name | Type | Required | Description |
| Action | String | True | The name of the action to perform. Possible values are delete and merge.
The allowed values are delete, merge. |
| Items | String | True | A semicolon-separated list of content tag Ids on which to perform the action. |
| TargetContentTagId | String | False | The Id of the target content tag to merge the specified tags into. Required only for the merge action. |
Result Set Columns
| Name | Type | Description |
| Success | String | Returns true if the job is created successfully. |