action box_get_files_id_comments { label: "List file comments" description: "Retrieves a list of comments for a file." provider: box method: GET path: "/files/{file_id}/comments" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } file_id: { type: "string" } limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } } required: ["file_id"] additionalProperties: false } output: { type: "object" description: "A list of comments" } }