create_task_comment
Add comments to tasks in ClickUp, providing context, updates, or instructions. Specify task ID, comment text, and optional assignee, with notifications to all assignees by default.
Instructions
Create a comment on a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignee | No | User ID to assign (optional) | |
comment_text | Yes | Comment text | |
notify_all | No | Notify all assignees (default: true) | |
task_id | Yes | Task ID |
Input Schema (JSON Schema)
{
"properties": {
"assignee": {
"description": "User ID to assign (optional)",
"type": "integer"
},
"comment_text": {
"description": "Comment text",
"type": "string"
},
"notify_all": {
"description": "Notify all assignees (default: true)",
"type": "boolean"
},
"task_id": {
"description": "Task ID",
"type": "string"
}
},
"required": [
"task_id",
"comment_text"
],
"type": "object"
}