Upload_Document
Upload files to a specified directory on SharePoint, supporting both text and Base64 content. Streamline document management and integration with SharePoint workflows.
Instructions
Upload a new file to a SharePoint directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
file_name | Yes | ||
folder_name | Yes | ||
is_base64 | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"file_name": {
"title": "File Name",
"type": "string"
},
"folder_name": {
"title": "Folder Name",
"type": "string"
},
"is_base64": {
"default": false,
"title": "Is Base64",
"type": "boolean"
}
},
"required": [
"folder_name",
"file_name",
"content"
],
"title": "upload_documentArguments",
"type": "object"
}