ticktick_add_task_note
Add a note to a specific task in TickTick, including comment, progress, or reminder types, with optional privacy settings.
Instructions
Add note to task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
is_private | No | Make note private | |
note_content | Yes | Note content | |
note_type | No | Type of note | comment |
task_id | Yes | ID of the task |
Input Schema (JSON Schema)
{
"properties": {
"is_private": {
"default": false,
"description": "Make note private",
"type": "boolean"
},
"note_content": {
"description": "Note content",
"type": "string"
},
"note_type": {
"default": "comment",
"description": "Type of note",
"enum": [
"comment",
"progress",
"reminder"
],
"type": "string"
},
"task_id": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"task_id",
"note_content"
],
"type": "object"
}