ticktick_export_habit_data
Export habit tracking data from TickTick in JSON or CSV format by specifying a habit ID or date range. Use this tool to analyze and manage habit performance over time.
Instructions
Export habit tracking data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date for export (YYYY-MM-DD) | |
format | No | Export format: json, csv | json |
habit_id | No | ID of specific habit, or omit for all habits | |
start_date | No | Start date for export (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date for export (YYYY-MM-DD)",
"type": "string"
},
"format": {
"default": "json",
"description": "Export format: json, csv",
"type": "string"
},
"habit_id": {
"description": "ID of specific habit, or omit for all habits",
"type": "string"
},
"start_date": {
"description": "Start date for export (YYYY-MM-DD)",
"type": "string"
}
},
"type": "object"
}