ticktick_make_subtask
Convert a task into a subtask of another task by providing the parent and child task IDs. Ensures both tasks are in the same project.
Instructions
Nest child_task_id under parent_task_id.
Args:
parent_task_id (str): The parent task's ID.
child_task_id (str): The task to become a subtask. Must differ
from parent_task_id and live in the same project.
Returns:
On success: {"status": "success", "updated_parent_task": ...,
"api_response": ...}.
Missing child / parent: {"status": "not_found", "error": "..."}.
Cross-project: {"error": "...same project...",
"child_project": "...", "parent_project": "..."}.
Example: ticktick_make_subtask( parent_task_id="60ca9dbc8f08516d9dd56324", child_task_id="60ca9dbc8f08516d9dd56325", )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent_task_id | Yes | ||
| child_task_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |