send_whatsapp_message_to_a_conversation
Send text messages to an existing WhatsApp conversation using a unique conversation ID. Ideal for continuing customer interactions or delivering personalized updates within the 24-hour messaging window.
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"
}