TagGroups
Lists all tag groups 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: =, LIKE, CONTAINS
For example, the following queries are processed server-side:
SELECT * FROM TagGroups
WHERE Id = 'tag-group-id'
SELECT * FROM TagGroups
WHERE CONTAINS(Name, 'cdata')
Insert
You can create new tag groups.
INSERT INTO TagGroups (Name)
VALUES ('CData')
Update
You can update tag groups. The field that can be updated is Name.
UPDATE TagGroups
SET Name = 'CData Software'
WHERE Id = 'tag-group-id'
Delete
You can delete a tag group by specifying its Id.
DELETE FROM TagGroups
WHERE Id = 'tag-group-id'
Columns
| Name | Type | ReadOnly | References | Description | |
| Id [KEY] | String | True |
The unique identifier for the tag group within Klaviyo. | ||
| IsDefault | Bool | True |
Indicates whether the tag group is the default group for the account. Each account includes one default tag group that cannot be deleted or duplicated. This value is true for the default tag group and false for all others. | ||
| IsExclusive | Bool | False |
Specifies whether the tag group is exclusive. In an exclusive tag group, a related resource (such as a campaign or flow) can be linked to only one tag. In a non-exclusive tag group, a resource can be linked to multiple tags within that group. | ||
| Name | String | False |
The display name of the tag group as defined in Klaviyo. |