Create Task From Template
documentedCreate a new task using a task template defined in the Workspace.
POST /v2/list/{list_id}/taskTemplate/{template_id}Templatesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.clickup.com/api/v2/list/{{$list_id}}/taskTemplate/{{$template_id}}" \
-X POST \
-H "Authorization: {{CLICKUP_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$title}}", "description": "{{$description}}", "start_date": "{{$start_date}}", "due_date": "{{$due_date}}", "status": "{{$status}}"}'