clickup_create_list
Create a new List inside an existing Folder to organize tasks by team or project. Requires a folder ID and list name; inherits Folder's statuses.
Instructions
Create a new List inside a Folder.
Lists inside a Folder normally inherit the Folder's statuses unless the
Folder itself overrides Space statuses. Use
clickup_create_folderless_list instead when the target Space is not
organized into Folders.
When to Use:
Setting up a new List for a team/project that already has a Folder.
Programmatically scaffolding a Workspace structure Folder-by-Folder.
When NOT to Use:
The target Space has no Folders — use
clickup_create_folderless_list.Copying an established List's tasks/views/custom fields — use
clickup_create_list_from_template_in_folderinstead.
Returns:
A confirmation string with the new List's name and id, or an
Error ... string.
Examples: params = {"folder_id": "12345", "name": "Sprint 24", "priority": 2} params = {"folder_id": "12345", "name": "Backlog", "markdown_content": "Unscheduled work"}
Error Handling:
404 means folder_id does not exist or is not accessible; 400 usually
means name is missing or a duplicate is not allowed under this Folder.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |