download_files
Retrieve survey files from LimeSurvey by specifying a survey ID and optional file ID. Use this tool to download specific files or all files associated with a survey.
Instructions
Download files from a LimeSurvey survey.
Args:
sid: The survey ID.
file_id: The file ID. If None, download all files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_id | No | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_id": {
"default": null,
"title": "File Id",
"type": "integer"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid"
],
"title": "download_filesArguments",
"type": "object"
}