export_responses
Export survey responses in various formats (CSV, JSON) from LimeSurvey using survey ID, language, and heading type options for structured data retrieval.
Instructions
Export responses from a LimeSurvey survey.
Args:
sid: The survey ID.
file_format: The format to export (csv, json, etc).
language: The language to export (en, es, etc).
heading_type: The type of heading to export (code, full, abbreviated).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_format | No | csv | |
heading_type | No | code | |
language | No | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_format": {
"default": "csv",
"title": "File Format",
"type": "string"
},
"heading_type": {
"default": "code",
"title": "Heading Type",
"type": "string"
},
"language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Language"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid"
],
"title": "export_responsesArguments",
"type": "object"
}