Sign in

Move card

documented

Move a card to a different stage or swimlane.

POST /projects/{project_id}/cards/{card_id}/move.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}}/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}}}'
Move card · Breeze · OpenIntegrations