fc_send_chat_message
Send messages in chat threads within FluentCommunity WordPress communities. Post user messages to specific conversation threads to facilitate community discussions and member interactions.
Instructions
Send a message in a chat thread
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | The thread ID | |
| user_id | Yes | The user ID sending the message | |
| message | Yes | Message content |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Message content",
"type": "string"
},
"thread_id": {
"description": "The thread ID",
"type": "number"
},
"user_id": {
"description": "The user ID sending the message",
"type": "number"
}
},
"required": [
"thread_id",
"user_id",
"message"
],
"type": "object"
}