clickup_list_create
Create a new task list inside a folder or space. Provide a name and optionally set description, due date, or status. Returns the list ID for subsequent operations.
Instructions
Create a new task list inside either a folder or a space (folderless). Exactly one of folder_id or space_id must be provided. Returns the created list object including its new id — use it as list_id for clickup_task_create and related calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | List description shown at the top of the list. Markdown supported. Omit for no description. | |
| due_date | No | List-level due date as a Unix timestamp in milliseconds (e.g. 1735689600000 for 2025-01-01). Individual tasks retain their own due dates. | |
| folder_id | No | ID of the parent folder. Obtain from clickup_folder_list (field: id). Mutually exclusive with space_id. | |
| name | Yes | Display name for the list. Required and non-empty. | |
| space_id | No | ID of the parent space — creates a folderless list attached directly to the space. Obtain from clickup_space_list (field: id). Mutually exclusive with folder_id. | |
| status | No | Default status for tasks added to this list. Must match a status name from the parent space's status set. |