clickup_create_folder_from_template
Replay a Folder template to create a new Folder with its Lists, statuses, and Views, instead of building from scratch.
Instructions
Create a new Folder by replaying a Folder template.
Calls POST /space/{space_id}/folder_template/{template_id}. Fetch
available template ids (always t--prefixed) with
clickup_get_folder_templates first.
When to Use:
To stamp out a repeatable Folder structure (Lists, statuses, views) instead of rebuilding it by hand with
clickup_create_folder.
When NOT to Use:
To create a plain empty Folder — use
clickup_create_folder.
Returns:
A confirmation string with the new Folder's id, or an Error ... string.
If options.return_immediately is left at ClickUp's default, the
template content may still be populating asynchronously — re-check with
clickup_get_folder.
Examples: params = { "space_id": "90130912", "template_id": "t-7162342", "name": "Q4 Launch (from template)", "options": {"include_views": True, "old_due_date": True}, }
Error Handling:
404 means space_id or template_id doesn't exist; 400 means the name
is missing/invalid.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |