action clearblade_get_box_files { label: "FILES - Get all files metadata in a box" description: "## Description:\nReturns metadata of files in a specific box. \nboxName defaults to \"inbox\"\n\n### Query Structure:\n```json\nbox={boxName}\n``` \n### boxName Options\n\n* inbox\n* outbox\n* sandbox\n\nIf `box==\"\"`, then all files from all three boxes (inbox, outbox, sandbox)\nwill be returned.\n\n### Example:\n\n```json\nbox=inbox\n```\n" provider: clearblade method: GET path: "/api/v/4/bucket_sets/{systemKey}/{deploymentName}/files" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } box: { type: "string" } deploymentName: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "deploymentName", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }