fc_list_comments
Retrieve and filter comments from FluentCommunity posts using criteria like post ID, user ID, or status to manage community discussions.
Instructions
List comments for a specific post or all comments
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| post_id | No | Filter comments by post ID | |
| user_id | No | Filter comments by user ID | |
| status | No | Filter by status | |
| limit | No | Number of comments to return |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Number of comments to return",
"type": "number"
},
"post_id": {
"description": "Filter comments by post ID",
"type": "number"
},
"status": {
"description": "Filter by status",
"type": "string"
},
"user_id": {
"description": "Filter comments by user ID",
"type": "number"
}
},
"type": "object"
}