Tags
Lists all tags in the account.
Select
The connector uses the Klaviyo API to process WHERE clause conditions with the following columns and operators. Remaining filters are evaluated client-side within the connector.
- Id supports the operator: =
- Name supports the operator: =, CONTAINS, LIKE
For example, the following queries are processed server-side:
SELECT * FROM Tags
WHERE Id = 'tag-id'
SELECT * FROM Tags
WHERE Name = 'CData Tag'
Insert
You can create new tags.
INSERT INTO Tags (Name)
VALUES ('CData')
Update
You can update tags. The field that can be updated is Name.
UPDATE Tags
SET Name = 'CData Software'
WHERE Id = 'tag-id'
Delete
You can delete a tag by specifying its Id.
DELETE FROM Tags
WHERE Id = 'tag-id'
Columns
| Name | Type | ReadOnly | References | Description | |
| Id [KEY] | String | True |
The unique identifier for the tag within Klaviyo. | ||
| Name | String | False |
The display name of the tag used to categorize or organize related resources such as campaigns, flows, or segments. |