clickup_get_chat_channel_members
Retrieve the list of users who are members of a specific ClickUp Chat channel. Use this to audit channel access and manage permissions.
Instructions
List the users who are members of a Chat channel.
Members can access and post to the channel. Results are cursor-paginated.
When to Use:
To audit who has access to a private channel or DM.
When NOT to Use:
To see subscribers only — use
clickup_get_chat_channel_followers.
Returns:
A list of member users (name, id, email). When more results exist the
response includes a next_cursor; pass it back as cursor to page forward.
Pagination:
Cursor-based. Loop with cursor=<next_cursor> until it is empty.
Examples:
params = {"channel_id": "6-901300-8"}
params = {"channel_id": "6-901300-8", "cursor": "eyJ...", "limit": 100}
Error Handling:
404 → channel not found. Errors return an Error ... string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |