delete_file
Remove specified files or folders by providing the file ID and account ID using a Microsoft MCP server integration. Ensures efficient file management within connected Microsoft services.
Instructions
Delete a file or folder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
file_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"file_id": {
"title": "File Id",
"type": "string"
}
},
"required": [
"file_id",
"account_id"
],
"type": "object"
}