action box_get_folders_id { label: "Get folder information" description: "Retrieves details for a folder, including the first 100 entries\nin the folder.\n\nTo fetch more items within the folder, please use the\n[Get items in a folder](#get-folders-id-items) endpoint." provider: box method: GET path: "/folders/{folder_id}" encoding: json input: { type: "object" properties: { boxapi: { type: "string" } fields: { type: "array" items: { type: "string" } } folder_id: { type: "string" } "if-none-match": { type: "string" } } required: ["folder_id"] additionalProperties: false } output: { type: "object" description: "A standard representation of a folder, as returned from any\nfolder API endpoints by default" required: ["created_by", "item_collection", "item_status", "modified_by", "owned_by", "path_collection", "size"] } }