clickup_create_list_from_template_in_space
Create a new folderless List in a ClickUp Space using a template. Instantiates a list with predefined statuses, views, and tasks directly in the space without a folder.
Instructions
Create a new folderless List inside a Space by instantiating a 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 folderless List that should start with a known set of statuses, views, or starter Tasks defined in a template.
When NOT to Use:
The target Space uses Folders — use
clickup_create_list_from_template_in_folderinstead.No template fits — use
clickup_create_folderless_listfor a blank List.
Returns:
A confirmation string with the new List's id, or an Error ... string.
Examples: params = {"space_id": "67890", "template_id": "t-15363293", "name": "General"}
Error Handling:
400 means name is missing or already taken; 404 means the template or
space was not found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |