Create comment
documentedAdd a new comment to a task.
POST /api_v2/projects/{project_id}/tasks/{task_id}/comments.jsonProjectsno 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://www.bugherd.com/api_v2/projects/{{$project_id}}/tasks/{{$task_id}}/comments.json" \
-X POST \
-u "{{BUGHERD_API_KEY}}:x" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"comment": {"text": "{{$comment_text}}", "user_id": {{$user_id}}}}'