update-template
Modify existing email templates by updating name, subject, HTML content, text version, or category for transactional emails and testing.
Instructions
Update an existing email template
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | New category for the template | |
| html | No | New HTML content of the template | |
| name | No | New name for the template | |
| subject | No | New email subject line | |
| template_id | Yes | ID of the template to update | |
| text | No | New plain text version of the template |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "New category for the template",
"type": "string"
},
"html": {
"description": "New HTML content of the template",
"type": "string"
},
"name": {
"description": "New name for the template",
"type": "string"
},
"subject": {
"description": "New email subject line",
"type": "string"
},
"template_id": {
"description": "ID of the template to update",
"type": "number"
},
"text": {
"description": "New plain text version of the template",
"type": "string"
}
},
"required": [
"template_id"
],
"type": "object"
}