Get_Document_Content
Extract content from specific documents in SharePoint by specifying folder and file names, enabling direct interaction with stored data.
Instructions
Get content of a document in SharePoint
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": "get_document_content_toolArguments",
"type": "object"
}