clickup_get_chat_messages
List messages in a ClickUp Chat channel, sorted newest first, with cursor-based pagination. Retrieve author, timestamp, reply count, and content to read conversations or obtain message IDs for replies.
Instructions
List the messages in a Chat channel (newest first), cursor-paginated.
When to Use:
To read a channel's conversation, or to grab a message id before replying, reacting, updating, or deleting.
When NOT to Use:
To list channels themselves — use
clickup_get_chat_channels(chat_channels).To read one message's replies — use
clickup_get_chat_message_replies.
Returns:
Each message's author, id, timestamp, reply count, and a content snippet. When
more results exist the output includes a next_cursor to page forward.
Pagination:
Cursor-based. Call once, read next_cursor, then call again with
cursor=<next_cursor> until it is empty.
Examples:
params = {"channel_id": "6-901..."}
params = {"channel_id": "6-901...", "cursor": "eyJ...", "limit": 100}
Error Handling:
404 → unknown channel id; 401 → bad token. Errors return an Error ... string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |