ticktick_move_task
Relocate a task to a different project by specifying its ID and the target project's ID. Returns the moved task or error details.
Instructions
Move a task into a different project.
Args: task_id (str): The task's full ID. new_project_id (str): Destination project's ID.
Returns:
JSON object containing the moved task. If the target project
cannot be looked up locally, the move is still attempted.
Missing source task (no projectId field):
{"status": "not_found", ...}.
Other failures: {"error": "...", "status": "error"}.
Example: ticktick_move_task( task_id="60ca9dbc8f08516d9dd56324", new_project_id="", )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ||
| new_project_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |