get-message
Retrieve detailed information about a specific message in Zulip by its ID, including edit history, reactions, and metadata, for in-depth analysis and insights.
Instructions
š SINGLE MESSAGE: Get complete details about one specific message when you have its ID. Use this for in-depth analysis, checking edit history, reactions, or metadata. Returns single message with full details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
allow_empty_topic_name | No | Allow empty topic names in response (default: false) | |
apply_markdown | No | Return HTML content (true) or raw Markdown (false). Default: true | |
message_id | Yes | Unique message ID to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"allow_empty_topic_name": {
"description": "Allow empty topic names in response (default: false)",
"type": "boolean"
},
"apply_markdown": {
"description": "Return HTML content (true) or raw Markdown (false). Default: true",
"type": "boolean"
},
"message_id": {
"description": "Unique message ID to retrieve",
"type": "number"
}
},
"required": [
"message_id"
],
"type": "object"
}