Create todo list
documentedCreate a new todo list for a card.
POST /projects/{project_id}/cards/{card_id}/todo_lists.jsonCardsno 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.breeze.pm/projects/{{$project_id}}/cards/{{$card_id}}/todo_lists.json" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"name": "{{$todo_list_name}}"}'