ticktick_export_project
Export TickTick project data in JSON, CSV, or Markdown format, including completed tasks. Enables users to manage and analyze task information efficiently.
Instructions
Export project data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Export format: json, csv, md | json |
include_completed | No | Include completed tasks | |
project_id | Yes | ID of the project to export |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Export format: json, csv, md",
"type": "string"
},
"include_completed": {
"default": true,
"description": "Include completed tasks",
"type": "boolean"
},
"project_id": {
"description": "ID of the project to export",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}