create_file
Transfer local files to OneDrive using specified paths and account details. Simplify file management through integration with Microsoft Graph API.
Instructions
Upload a local file to OneDrive
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
local_file_path | Yes | ||
onedrive_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"local_file_path": {
"title": "Local File Path",
"type": "string"
},
"onedrive_path": {
"title": "Onedrive Path",
"type": "string"
}
},
"required": [
"onedrive_path",
"local_file_path",
"account_id"
],
"type": "object"
}