action box_get_comments_id { label: "Get comment" description: "Retrieves the message and metadata for a specific comment, as well\nas information on the user who created the comment." provider: box method: GET path: "/comments/{comment_id}" encoding: json input: { type: "object" properties: { comment_id: { type: "string" } fields: { type: "array" items: { type: "string" } } } required: ["comment_id"] additionalProperties: false } output: { type: "object" description: "Standard representation of a comment." } }