download_document
Retrieve and save documents from the Alfresco repository using a node ID. This tool supports direct downloads and attachment handling for efficient document management.
Instructions
Download a document from Alfresco repository.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachment | No | ||
node_id | Yes | ||
save_to_disk | No |
Input Schema (JSON Schema)
{
"properties": {
"attachment": {
"default": true,
"title": "Attachment",
"type": "boolean"
},
"node_id": {
"title": "Node Id",
"type": "string"
},
"save_to_disk": {
"default": true,
"title": "Save To Disk",
"type": "boolean"
}
},
"required": [
"node_id"
],
"type": "object"
}