send_msg_to_multiple_num_using_approved_template
Send WhatsApp messages to multiple contacts using pre-approved templates via the Titanmind WhatsApp MCP server. Ideal for bulk messaging campaigns and standardized communication workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contacts | Yes | ||
template_id | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"Contact": {
"properties": {
"country_code": {
"title": "Country Code",
"type": "string"
},
"country_code_alpha": {
"title": "Country Code Alpha",
"type": "string"
},
"phone_without_country_code": {
"title": "Phone Without Country Code",
"type": "string"
}
},
"required": [
"country_code_alpha",
"country_code",
"phone_without_country_code"
],
"title": "Contact",
"type": "object"
}
},
"properties": {
"contacts": {
"items": {
"$ref": "#/$defs/Contact"
},
"title": "Contacts",
"type": "array"
},
"template_id": {
"title": "Template Id",
"type": "integer"
}
},
"required": [
"template_id",
"contacts"
],
"type": "object"
}