Sign in

Create Task From Template

documented

Create a new task using a task template defined in the Workspace.

POST /v2/list/{list_id}/taskTemplate/{template_id}Templatesno implementation yet0 runs
No 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}}"}'
Create Task From Template · ClickUp · OpenIntegrations