clickup_create_chat_view_comment
Post a comment into a legacy ClickUp Chat view by providing the view ID and comment text. Use for conversation-type views only.
Instructions
Post a comment into a Chat view.
Posts to POST /view/{view_id}/comment. This is the legacy Chat-view
comment surface (views of type=conversation); the newer, richer Chat API
(channels + messages, all v3) lives in tools/chat_messages.py — prefer
that module for new Chat integrations, and this tool only when you are
already working with a Chat-type view id.
When to Use:
To post into an existing Chat view when you already have its view_id.
When NOT to Use:
To send a message in a modern Chat channel — use
clickup_send_chat_message(tools/chat_messages.py) instead.
Returns:
A confirmation string with the new comment's id, hist_id, and timestamp, or
an Error ... string on failure.
Examples: params = {"view_id": "105", "comment_text": "Standup notes for today."}
Error Handling: 404 means the view id is wrong or is not a Chat-type view.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |