export_statistics
Export survey statistics in PDF, XLS, or HTML formats from LimeSurvey using the survey ID for streamlined data analysis and reporting.
Instructions
Export statistics for a LimeSurvey survey.
Args:
sid: The survey ID.
document_type: The document type (pdf, xls, html).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_type | No | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"document_type": {
"default": "pdf",
"title": "Document Type",
"type": "string"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid"
],
"title": "export_statisticsArguments",
"type": "object"
}