clickup_create_task_from_template
Create a task in a ClickUp list from a saved template, applying predefined checklists and subtasks.
Instructions
Create a task in a List from a saved task template.
Calls POST /list/{list_id}/taskTemplate/{template_id} with a name. Look up
available template ids with clickup_get_task_templates.
When to Use:
To spin up a task with a predefined structure (checklists, subtasks, fields).
When NOT to Use:
For a plain new task — use
clickup_create_task.
Returns: A confirmation string with the new task's name and id.
Examples:
params = {"list_id": "901", "template_id": "t-123", "name": "Onboard Acme"}
Error Handling: 404 means the List or template id is wrong.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |