create_subtask
Add a subtask to a Kanboard task with required parent task ID and title. Optionally assign a user, set estimated and spent time, and change status.
Instructions
Create a subtask under an existing Kanboard task. Status: 0 = todo (default), 1 = in progress, 2 = done. To list a task's subtasks use list_subtasks; to edit one use update_subtask. Returns { subtask_id, task_id } on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ID of the parent task. | |
| title | Yes | Subtask title (1–255 characters, required). | |
| user_id | No | User id to assign the subtask to (optional). | |
| time_estimated | No | Estimated time in hours (optional). | |
| time_spent | No | Time already spent in hours (optional). | |
| status | No | Subtask status: 0 = todo (default), 1 = in progress, 2 = done. |