clickup_create_list_from_template_in_folder
Create a new list inside a folder by instantiating a list template, inheriting statuses, views, and tasks from the template.
Instructions
Create a new List inside a Folder by instantiating a List template.
Use clickup_get_list_templates to discover available template_id
values (they carry a t- prefix, e.g. t-15363293). With
return_immediately=True (the default) the response's List id may
represent a List that is still being populated in the background for
large templates — poll with clickup_get_list if you need to confirm
completion.
When to Use:
Scaffolding a new List that should start with a known set of statuses, views, or starter Tasks defined in a template.
When NOT to Use:
The Space has no Folders — use
clickup_create_list_from_template_in_spaceinstead.No template fits — use
clickup_create_listfor a blank List.
Returns:
A confirmation string with the new List's id, or an Error ... string.
Examples: params = {"folder_id": "12345", "template_id": "t-15363293", "name": "Sprint 24"} params = {"folder_id": "12345", "template_id": "t-15363293", "name": "Sprint 24", "return_immediately": False}
Error Handling:
400 means name is missing or already taken; 404 means the template,
folder, or space was not found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |