fc_list_space_members
View and filter members in a FluentCommunity space by status to manage community participation and monitor user activity.
Instructions
List members of a specific space
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | The space ID to list members from | |
| status | No | Filter by member status | |
| limit | No | Number of members to return |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Number of members to return",
"type": "number"
},
"space_id": {
"description": "The space ID to list members from",
"type": "number"
},
"status": {
"description": "Filter by member status",
"enum": [
"active",
"pending",
"banned"
],
"type": "string"
}
},
"required": [
"space_id"
],
"type": "object"
}