add_comment
Add a comment to a task. Provide the task ID and non-empty content to create a comment; returns comment ID, content, author, and timestamps.
Instructions
Post a comment on a task. Returns the created Comment with id,
content, author, and timestamps.
Common 422 (KanbanToolValidationError with parsed field_errors):
content empty or whitespace-only — fix by passing a non-empty
string; the field_errors key matches the parameter name.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ||
| content | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| content | Yes | ||
| user_id | No | ||
| created_at | No | ||
| updated_at | No | ||
| deleted_at | No |