send_whatsapp_message_to_a_conversation
Send targeted WhatsApp messages directly to specific conversations using a conversation ID, enabling precise communication within the Titanmind WhatsApp MCP platform.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversation_id | Yes | ||
message | Yes |
Input Schema (JSON Schema)
{
"properties": {
"conversation_id": {
"title": "Conversation Id",
"type": "string"
},
"message": {
"title": "Message",
"type": "string"
}
},
"required": [
"conversation_id",
"message"
],
"type": "object"
}