complete_task
Mark a specific task as completed by providing the task and project IDs. Integrates with TickTick for efficient task management and timezone handling.
Instructions
Mark a task as completed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | Project ID containing the task (required) | |
taskId | Yes | Task ID to complete (required) |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "Project ID containing the task (required)",
"type": "string"
},
"taskId": {
"description": "Task ID to complete (required)",
"type": "string"
}
},
"required": [
"taskId",
"projectId"
],
"type": "object"
}