action microsoft_list_recent_files { label: "List recent files" description: "List drive items recently used by the signed-in user." provider: microsoft method: GET path: "/v1.0/me/drive/recent()" scopes: ["Files.ReadWrite"] input: @json { { "type": "object", "additionalProperties": false, "properties": { "$top": { "type": "integer", "description": "Maximum number of items to return." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "webUrl": { "type": "string" }, "lastModifiedDateTime": { "type": "string" }, "remoteItem": { "type": "object" } } } } } } } }