action files_get_messages_id { label: "Show Message" description: "Show Message" provider: files method: GET path: "/messages/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "List Messages" properties: { body: { type: "string" description: "Message body." } comments: { type: "array" description: "Comments." items: { 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" } } } } } } } id: { type: "integer" format: "int32" description: "Message ID" } subject: { type: "string" description: "Message subject." } } } }