Sign in

Update todo list

documented

Update a todo list for a card.

PUT /projects/{project_id}/cards/{card_id}/todo_lists/{todo_list_id}.jsonCardsno 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.breeze.pm/projects/{{$project_id}}/cards/{{$card_id}}/todo_lists/{{$todo_list_id}}.json" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"name": "{{$name}}"}'