action files_get_message_comment_reactions { label: "List Message Comment Reactions" description: "List Message Comment Reactions" provider: files method: GET path: "/message_comment_reactions" encoding: json input: { type: "object" properties: { cursor: { type: "string" } message_comment_id: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } user_id: { type: "integer" format: "int32" } } required: ["message_comment_id"] additionalProperties: false } output: { type: "array" 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" } } } } }