create_subtask
Create a subtask for a Kanboard task by providing parent task ID and subtask title. Optionally assign a user, set time estimates, or change status.
Instructions
Create a subtask under an existing Kanboard task. Returns { subtask_id } on success. Status: 0 = todo (default), 1 = in progress, 2 = done.
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. |