fc_update_comment
Modify existing comments by updating the message content or changing the comment status within the FluentCommunity platform.
Instructions
Update an existing comment
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| comment_id | Yes | The ID of the comment to update | |
| message | No | Updated comment message | |
| status | No | Comment status |
Input Schema (JSON Schema)
{
"properties": {
"comment_id": {
"description": "The ID of the comment to update",
"type": "number"
},
"message": {
"description": "Updated comment message",
"type": "string"
},
"status": {
"description": "Comment status",
"type": "string"
}
},
"required": [
"comment_id"
],
"type": "object"
}