Move card
documentedMove a card to a different stage or swimlane.
POST /projects/{project_id}/cards/{card_id}/move.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}}/move.json" \
-X POST \
-u "{{BREEZE_API_KEY}}:" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"stage_id": {{$stage_id}}, "prev_id": {{$prev_id}}}'