action microsoft_download_drive_file { label: "Download drive file" description: "Download the content of a file from any drive by drive id, such as a SharePoint document library. Returns the file body as text, so it is best suited to text-based files." provider: microsoft method: GET path: "/v1.0/drives/{drive_id}/items/{item_id}/content" scopes: ["Sites.Read.All"] input: @json { { "type": "object", "required": ["drive_id", "item_id"], "additionalProperties": false, "properties": { "drive_id": { "type": "string", "description": "Drive id." }, "item_id": { "type": "string", "description": "Drive item id of the file." } } } } }