create_task_from_template
Generate tasks in ClickUp by applying predefined templates, allowing users to customize and assign tasks to specific lists for streamlined project workflow management.
Instructions
Create a task from a template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customizations | No | Customizations to apply to template | |
list_id | Yes | List ID for the new task | |
template_name | Yes | Template name |
Input Schema (JSON Schema)
{
"properties": {
"customizations": {
"description": "Customizations to apply to template",
"type": "object"
},
"list_id": {
"description": "List ID for the new task",
"type": "string"
},
"template_name": {
"description": "Template name",
"type": "string"
}
},
"required": [
"template_name",
"list_id"
],
"type": "object"
}