downloadFile
Download file attachments from RSpace documents to your local system by specifying the file ID and destination path. Retrieve images, data files, and other attachments stored in RSpace research documents.
Instructions
Downloads file attachments from RSpace documents
Usage: Retrieve images, data files, or other attachments Parameters:
file_id: Numeric ID of the file attachment
file_path: Local filesystem path where file should be saved
Returns: Download status and file information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_id | Yes | ||
file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_id": {
"title": "File Id",
"type": "integer"
},
"file_path": {
"title": "File Path",
"type": "string"
}
},
"required": [
"file_id",
"file_path"
],
"type": "object"
}