fc_update_space
Modify existing community spaces by updating titles, descriptions, privacy settings, and status to maintain accurate and current collaborative environments.
Instructions
Update an existing space
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | The ID of the space to update | |
| title | No | Space title | |
| description | No | Space description | |
| privacy | No | Privacy setting | |
| status | No | Space status |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Space description",
"type": "string"
},
"privacy": {
"description": "Privacy setting",
"enum": [
"public",
"private"
],
"type": "string"
},
"space_id": {
"description": "The ID of the space to update",
"type": "number"
},
"status": {
"description": "Space status",
"enum": [
"active",
"inactive",
"archived"
],
"type": "string"
},
"title": {
"description": "Space title",
"type": "string"
}
},
"required": [
"space_id"
],
"type": "object"
}