get_file
Download files from OneDrive to a specified local path by providing the file ID, account ID, and download path. Enables efficient file management through Microsoft Graph API integration.
Instructions
Download a file from OneDrive to local path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
download_path | Yes | ||
file_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"download_path": {
"title": "Download Path",
"type": "string"
},
"file_id": {
"title": "File Id",
"type": "string"
}
},
"required": [
"file_id",
"account_id",
"download_path"
],
"type": "object"
}