Sign in

Add people to card

documented

Assign people to a card.

POST /projects/{project_id}/cards/{card_id}/people.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}}/people.json?team_id={{team_id}}" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "HTTP_X_TEAM_ID: {{team_id}}" \
  -d '{"invitees": ["{{$invitee_1}}","{{$invitee_2}}"]}'