Create Task
documentedCreate a new task.
POST /v2/taskTasksno 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}}/task" \
-X POST \
-H "Authorization: Bearer {{CLICKUP_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$title}}", "description": "{{$description}}", "status": "{{$status}}", "assignees": {{$assignees}}, "tags": {{$tags}}, "due_date": {{$due_date}}, "due_date_time": {{$due_date_time}}, "time_estimate": {{$time_estimate}} }'