get_list_assignees
Retrieve all team members who can be assigned tasks from a specific ClickUp list to facilitate task delegation and management.
Instructions
Get all members (potential assignees) of a list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | ClickUp list ID |
Input Schema (JSON Schema)
{
"properties": {
"list_id": {
"description": "ClickUp list ID",
"type": "string"
}
},
"required": [
"list_id"
],
"type": "object"
}