action box_get_files_id { label: "Get file information" description: "Retrieves the details about a file." provider: box method: GET path: "/files/{file_id}" encoding: json input: { type: "object" properties: { boxapi: { type: "string" } fields: { type: "array" items: { type: "string" } } file_id: { type: "string" } "if-none-match": { type: "string" } "x-rep-hints": { type: "string" } } required: ["file_id", "x-rep-hints"] additionalProperties: false } output: { type: "object" description: "A standard representation of a file, as returned from any\nfile API endpoints by default" required: ["created_at", "description", "item_status", "modified_at", "modified_by", "owned_by", "path_collection", "size"] } }