create_task_comment
Post a comment on a task to leave feedback, ask questions, or record an update. Optionally assign it to a user and notify all watchers.
Instructions
Post a new comment on a task. Optionally assign it to a user and notify all watchers. Returns the created comment's id. Use to leave feedback, ask questions or record an update directly on a task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ID of the task to comment on. | |
| comment_text | Yes | The comment body text (plain text or ClickUp markdown). | |
| assignee | No | User ID to assign this comment to, turning it into an actionable item for that person. | |
| notify_all | No | If true, notify everyone with access to the task; if false/omitted, only the assignee is notified. | |
| custom_task_ids | No | Set true when `task_id` is a custom task ID instead of a native ClickUp ID. Requires `team_id`. | |
| team_id | No | Team/Workspace ID. Falls back to CLICKUP_TEAM_ID when omitted. |