Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.seamless.ai/llms.txt

Use this file to discover all available pages before exploring further.

Manage email templates. Requires Connect access. Use seamless://templates/variables for merge tags like {first_name}.
ToolDescriptionRiskSchema
list_templatesList templates or get one by ID.read#list_templates
create_templateCreate template with subject and body.write#create_template
update_templateUpdate name, subject, or body.write#update_template
delete_templatePermanently delete a template.destructive#delete_template

create_template

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "create_template",
    "arguments": {
      "name": "Meeting request",
      "subject": "Quick intro, {first_name}",
      "body": "<p>Hi {first_name},</p>"
    }
  },
  "id": 1
}