ticktick_update_task
Modify existing TickTick tasks by updating specific fields like title, due date, priority, or description while preserving unchanged information.
Instructions
Update an existing TickTick task. Only provided fields are changed.
Fetches the current task first, then applies your changes on top, so fields you don't specify are preserved.
Args: params (UpdateTaskInput): - task_id (str): ID of the task to update (required) - project_id (str): Project ID the task belongs to (required) - title (Optional[str]): New task title - content (Optional[str]): New task description - due_date (Optional[str]): New due date (e.g., '2026-03-25') - priority (Optional[int]): New priority: 0=None, 1=Low, 3=Medium, 5=High
Returns: str: JSON with success status and updated task details.
Examples: - "Change the due date of task X to Friday" - "Make task Y high priority" - "Update the title of task Z"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |