update_template
Modify the name of an existing email template to better organize and identify your email campaigns and communications.
Instructions
Update the name of an existing template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | New name for the template | |
template_id | Yes | ID of the template to update |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "New name for the template",
"type": "string"
},
"template_id": {
"description": "ID of the template to update",
"type": "string"
}
},
"required": [
"template_id",
"name"
],
"type": "object"
}