Update task
documentedUpdate a task by ID.
PUT /tasks/{id}Tasksno 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://www.meistertask.com/api/tasks/{{$id}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"title": "{{$title}}", "description": "{{$description}}", "due_date": "{{$due_date}}", "assignee_id": "{{$assignee_id}}", "section_id": "{{$section_id}}", "labels": ["{{$label1}}","{{$label2}}"], "status": "{{$status}}", "priority": "{{$priority}}"}'