add_subtask
Add a subtask to a specified task by providing the task ID and subtask name.
Instructions
Add a subtask to a task. Returns the created Subtask.
name is the human-readable label. Mirrors the parameter name used
by update_subtask and the wire/model field on Subtask.name.
Common 422 (KanbanToolValidationError with parsed field_errors):
name empty or whitespace-only — fix by passing a non-empty string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ||
| name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| name | Yes | ||
| is_completed | No | ||
| position | No | ||
| task_id | No | ||
| assigned_user_id | No | ||
| deleted_at | No |