ticktick_get_task_notes
Retrieve task notes and comments from TickTick by specifying the task ID. Optionally include replies and sort notes by newest or oldest.
Instructions
Get task notes/comments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_replies | No | Include comment replies | |
sort_order | No | Sort order for notes | newest |
task_id | Yes | ID of the task |
Input Schema (JSON Schema)
{
"properties": {
"include_replies": {
"default": true,
"description": "Include comment replies",
"type": "boolean"
},
"sort_order": {
"default": "newest",
"description": "Sort order for notes",
"enum": [
"newest",
"oldest"
],
"type": "string"
},
"task_id": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}