create_list
Create a new task list within a specified ClickUp folder to organize and manage project workflows efficiently.
Instructions
Create a new list in a folder
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder_id | Yes | ClickUp folder ID | |
| name | Yes | List name |
Input Schema (JSON Schema)
{
"properties": {
"folder_id": {
"description": "ClickUp folder ID",
"type": "string"
},
"name": {
"description": "List name",
"type": "string"
}
},
"required": [
"folder_id",
"name"
],
"type": "object"
}