Sign in

Update Task

documented

Update an existing task.

PUT /v2/task/{task_id}Tasksno 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/task/{{$task_id}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$title}}", "description": "{{$description}}", "status": "{{$status}}", "priority": {{$priority}}, "due_date": {{$due_date}}, "due_date_time": {{$due_date_time}}, "time_estimate": {{$time_estimate}}, "assignees": [{{$assignees}}], "tags": [{{$tags}}]}'