create_template
Generate email templates for marketing campaigns by providing name, HTML, and text content. Streamline content creation for Klaviyo MCP Server workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
html | Yes | HTML content of the template | |
name | Yes | Name of the template | |
text | No | Text content of the template |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"html": {
"description": "HTML content of the template",
"type": "string"
},
"name": {
"description": "Name of the template",
"type": "string"
},
"text": {
"description": "Text content of the template",
"type": "string"
}
},
"required": [
"name",
"html"
],
"type": "object"
}