create_template
Create customizable WhatsApp Business message templates with dynamic variables for order confirmations, appointment reminders, and promotional communications.
Instructions
Create a new message template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Template category | |
description | No | Template description | |
name | Yes | Template name | |
tags | No | Template tags | |
text | Yes | Template text with {{variables}} | |
variables | No | List of variable names |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Template category",
"type": "string"
},
"description": {
"description": "Template description",
"type": "string"
},
"name": {
"description": "Template name",
"type": "string"
},
"tags": {
"description": "Template tags",
"items": {
"type": "string"
},
"type": "array"
},
"text": {
"description": "Template text with {{variables}}",
"type": "string"
},
"variables": {
"description": "List of variable names",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"text"
],
"type": "object"
}