clickup_get_chat_view_comments
List comments from a legacy Chat view, ordered newest first. Retrieve message history with cursor-based pagination.
Instructions
List comments in a Chat view, newest first.
Calls GET /view/{view_id}/comment.
When to Use:
To read the message history of a legacy Chat-type view.
When NOT to Use:
To read messages in a modern Chat channel — use
clickup_get_chat_channel_messages(tools/chat_messages.py) instead.
Returns: Markdown (default) or JSON list of comments with id, author, date, and (truncated) text.
Pagination:
Cursor-based (start/start_id), identical pattern to
clickup_get_task_comments — see that tool's docstring for the full
explanation. Omit both for the most recent 25 comments.
Examples: params = {"view_id": "105"}
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 |