fc_get_post
Retrieve specific community post details by ID to access complete content, author information, and engagement metrics for content management.
Instructions
Get a specific post by ID with all details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| post_id | Yes | The ID of the post to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"post_id": {
"description": "The ID of the post to retrieve",
"type": "number"
}
},
"required": [
"post_id"
],
"type": "object"
}