ContentTags
Create, Update, Delete and Query the Content Tags in Zendesk.
Table Specific Information
Select
The following queries are processed server side while other filters are processed client side within the adapter.SELECT * FROM ContentTags WHERE Id = '01HCCV8145J2MBX6XZ103G10CH'
Insert
The Name field is required to insert. Allowed for Guide managers and Guide agents.
INSERT INTO ContentTags (Name) VALUES ('Test')
Update
You must specify the Id of the ContentTag to update. Allowed for Guide managers.
UPDATE ContentTags SET Name = 'CData' WHERE Id = '01HCEJVFV4X9MA9D2SBC86FE5S'
Delete
You must specify the Id of the ContentTag to delete it. Allowed for Guide managers.
DELETE FROM ContentTags WHERE Id = '01HCEJVFV4X9MA9D2SBC86FE5S'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Automatically assigned when the content tag is created. | |
Name | String | False |
The name of the content tag. | |
CreatedAt | Datetime | True |
When the content tag was created. | |
UpdatedAt | Datetime | True |
When the content tag was last updated. |