JDBC Driver for Zendesk

Build 23.0.8839

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 本製品.
SELECT * FROM ContentTags
SELECT * FROM ContentTags WHERE Id = '01HCCV8145J2MBX6XZ103G10CH'

You can turn off the client-side execution of the query by setting SupportEnhancedSQL to false in which case any other search criteria will be ignored and an unfiltered response will be returned.

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.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839