fc_list_chat_threads
Retrieve and filter chat conversations from FluentCommunity with options to search by user ID, thread status, and limit results for efficient management.
Instructions
List chat threads/conversations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | No | Filter threads by user ID | |
| status | No | Filter by thread status | |
| limit | No | Number of threads to return |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Number of threads to return",
"type": "number"
},
"status": {
"description": "Filter by thread status",
"type": "string"
},
"user_id": {
"description": "Filter threads by user ID",
"type": "number"
}
},
"type": "object"
}