export_timeline
Export survey response timelines within a specified date range from LimeSurvey. Input survey ID, start date, and end date to generate detailed timeline data.
Instructions
Export timeline for a LimeSurvey survey.
Args:
    sid: The survey ID.
    start_date: The start date (YYYY-MM-DD).
    end_date: The end date (YYYY-MM-DD).
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| end_date | No | ||
| sid | Yes | ||
| start_date | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "end_date": {
      "default": null,
      "title": "End Date",
      "type": "string"
    },
    "sid": {
      "title": "Sid",
      "type": "integer"
    },
    "start_date": {
      "default": null,
      "title": "Start Date",
      "type": "string"
    }
  },
  "required": [
    "sid"
  ],
  "title": "export_timelineArguments",
  "type": "object"
}