action microsoft_delete_drive_item { label: "Delete drive item" description: "Delete a OneDrive file or folder. The item moves to the recycle bin." provider: microsoft method: DELETE path: "/v1.0/me/drive/items/{item_id}" scopes: ["Files.ReadWrite"] input: @json { { "type": "object", "required": ["item_id"], "additionalProperties": false, "properties": { "item_id": { "type": "string", "description": "Id of the file or folder to delete." } } } } }