fc_update_post
Modify existing community posts by updating content, status, privacy settings, or metadata to maintain current and relevant discussions.
Instructions
Update an existing post in FluentCommunity
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| post_id | Yes | The ID of the post to update | |
| title | No | Post title | |
| message | No | Post content/message | |
| message_rendered | No | Rendered HTML version of the message | |
| type | No | Post type | |
| status | No | Post status | |
| privacy | No | Post privacy setting | |
| featured_image | No | URL of the featured image | |
| meta | No | Additional metadata as JSON object |
Input Schema (JSON Schema)
{
"properties": {
"featured_image": {
"description": "URL of the featured image",
"type": "string"
},
"message": {
"description": "Post content/message",
"type": "string"
},
"message_rendered": {
"description": "Rendered HTML version of the message",
"type": "string"
},
"meta": {
"description": "Additional metadata as JSON object",
"type": "object"
},
"post_id": {
"description": "The ID of the post to update",
"type": "number"
},
"privacy": {
"description": "Post privacy setting",
"enum": [
"public",
"private",
"friends"
],
"type": "string"
},
"status": {
"description": "Post status",
"enum": [
"published",
"draft",
"pending",
"archived"
],
"type": "string"
},
"title": {
"description": "Post title",
"type": "string"
},
"type": {
"description": "Post type",
"type": "string"
}
},
"required": [
"post_id"
],
"type": "object"
}