Create Message in Conversation
chatwoot_create_messageSend customer replies or private internal notes in Chatwoot conversations. Create messages directly in any existing conversation with specified content.
Instructions
Create a new message in a Chatwoot conversation.
This tool sends a message in an existing conversation. Can be used for outgoing messages to customers or private internal notes.
Args:
conversation_id (number): The ID of the conversation (required)
content (string): The message content (required)
message_type (string): Type of message - "outgoing" or "incoming" (default: "outgoing")
private (boolean): Whether this is a private internal note (default: false)
Returns: Created message details including ID and confirmation
Examples:
Send a reply: { conversation_id: 123, content: "Thank you for contacting us!" }
Add internal note: { conversation_id: 123, content: "Customer called for follow-up", private: true }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The message content | |
| private | No | Whether the message is private (internal note) | |
| message_type | No | The type of message | outgoing |
| conversation_id | Yes | The ID of the conversation |