Delete_Document
Remove specific documents from SharePoint directories by specifying folder and file names, enabling precise document management and cleanup.
Instructions
Delete a document from a SharePoint directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_name | Yes | ||
folder_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_name": {
"title": "File Name",
"type": "string"
},
"folder_name": {
"title": "Folder Name",
"type": "string"
}
},
"required": [
"folder_name",
"file_name"
],
"title": "delete_documentArguments",
"type": "object"
}