create_tag
Generate and manage tags in Klaviyo to organize customer profiles, campaigns, and marketing workflows. Supports system and custom tag types for efficient categorization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the tag | |
tag_type | Yes | Type of tag |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the tag",
"type": "string"
},
"tag_type": {
"description": "Type of tag",
"enum": [
"system",
"custom"
],
"type": "string"
}
},
"required": [
"name",
"tag_type"
],
"type": "object"
}