get_task_comments
Retrieve all comments on a task, newest first, with details like text, author, creation date, assignee, and resolved state.
Instructions
List all comments on a task, newest first. Returns each comment's id, text, author, creation date, assignee and resolved state. Use to read a task's discussion history before replying or to audit activity. Supports cursor pagination via start + start_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ID of the task to read comments from. | |
| start | No | Unix timestamp in milliseconds to page backwards from (cursor). Use the date of the oldest comment already fetched. | |
| start_id | No | Comment ID to start paginating from, used together with `start` to fetch the next page. | |
| 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. |