discourse_read_post
Retrieve content from a specific post in Discourse forums using its unique post ID to access and display discussion details.
Instructions
Read a specific post.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"post_id": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"post_id"
],
"type": "object"
}