action box_get_collections { label: "List all collections" description: "Retrieves all collections for a given user.\n\nCurrently, only the `favorites` collection\nis supported." provider: box method: GET path: "/collections" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "object" description: "A list of collections" } }