fc_remove_space_member
Remove a user from a FluentCommunity space by specifying the space ID and user ID to manage community membership effectively.
Instructions
Remove a user from a space
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | The space ID | |
| user_id | Yes | The user ID to remove |
Input Schema (JSON Schema)
{
"properties": {
"space_id": {
"description": "The space ID",
"type": "number"
},
"user_id": {
"description": "The user ID to remove",
"type": "number"
}
},
"required": [
"space_id",
"user_id"
],
"type": "object"
}