action files_get_message_comments_id { label: "Show Message Comment" description: "Show Message Comment" provider: files method: GET path: "/message_comments/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "List Message Comments" properties: { body: { type: "string" description: "Comment body." } id: { type: "integer" format: "int32" description: "Message Comment ID" } reactions: { type: "array" description: "Reactions to this comment." items: { type: "object" description: "List Message Comment Reactions" properties: { emoji: { type: "string" description: "Emoji used in the reaction." } id: { type: "integer" format: "int32" description: "Reaction ID" } } } } } } }