clickup_get_list_members
Retrieve users with direct access to a ClickUp List to verify permissions before assigning tasks or sharing sensitive content, excluding inherited access.
Instructions
List the Workspace members with direct access to a List.
Calls GET /list/{list_id}/member. The response only includes members
granted access directly on this List — it excludes people who can see
the List because they belong to a User Group (group_id), or because
they inherited access from the parent Folder, Space, or Workspace
(team_id).
When to Use:
To check who has explicit access to a specific List before assigning tasks or sharing sensitive content.
To debug "why can't user X see this List" — if they're missing here, check Folder/Space sharing or User Group membership instead.
When NOT to Use:
To find who has explicit access to one Task, use
clickup_get_task_members.To manage User Group (ClickUp API name: "Team") membership, use
clickup_get_user_groups/clickup_update_user_group.
Returns: A markdown (or JSON) list of members with id, username, and email.
Examples: params = {"list_id": "901300123456"} params = {"list_id": "901300123456", "response_format": "json"}
Error Handling: 404 means the List id doesn't exist or isn't visible to this token; 401 means CLICKUP_API_TOKEN is missing or invalid.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |