action box_get_collections_id_items { label: "List collection items" description: "Retrieves the files and/or folders contained within\nthis collection." provider: box method: GET path: "/collections/{collection_id}/items" encoding: json input: { type: "object" properties: { collection_id: { type: "string" } fields: { type: "array" items: { type: "string" } } limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } } required: ["collection_id"] additionalProperties: false } output: { type: "object" description: "A list of files, folders, and web links in\ntheir mini representation." } }