action box_get_recent_items { label: "List recently accessed items" description: "Returns information about the recent items accessed\nby a user, either in the last 90 days or up to the last\n1000 items accessed." provider: box method: GET path: "/recent_items" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } limit: { type: "integer" format: "int64" } marker: { type: "string" } } additionalProperties: false } output: { type: "object" description: "A list of recent items." } }