Create card
documentedCreate a new card in a project.
POST /projects/{project_id}/cards.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.json?team_id={{TEAM_ID}}" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-u {{BREEZE_API_KEY}}: \
-d '{"name": "{{$title}}", "description": "{{$description}}", "duedate": "{{$duedate}}", "startdate": "{{$startdate}}", "planned_time": {{$planned_time}}, "stage_id": {{$stage_id}}, "tags": ["{{$tag1}}", "{{$tag2}}"]}'