action microsoft_download_file { label: "Download file" description: "Download the content of a OneDrive file. Returns the file body as text, so it is best suited to text-based files." provider: microsoft method: GET path: "/v1.0/me/drive/items/{item_id}/content" scopes: ["Files.ReadWrite"] input: @json { { "type": "object", "required": ["item_id"], "additionalProperties": false, "properties": { "item_id": { "type": "string", "description": "Drive item id of the file." } } } } }