Update a to-do
documentedUpdate an existing to-do (e.g., change content, due date, assignees).
PUT /buckets/{bucket_id}/todos/{todo_id}.jsonTo-dosno 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://3.basecampapi.com/{{$account_id}}/buckets/{{$bucket_id}}/todos/{{$todo_id}}.json" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json; charset=utf-8" \
-H "Accept: application/json" \
-H "User-Agent: {{BASECAMP_APP_NAME}} ({{BASECAMP_CONTACT_EMAIL}})" \
-d '{"title": "{{$title}}", "description": "{{$description}}", "assignee_ids": [{{$assignee_id}}], "due_on": "{{$due_on}}", "completed": {{$completed}}}'