Create task
documentedCreate a new task in a project.
POST /api_v2/projects/{project_id}/tasks.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.json" \
-X POST \
-u "{{BUGHERD_API_KEY}}:x" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"task":{"description":"{{$description}}","priority":"{{$priority}}","status":"{{$status}}","requester_id":{{$requester_id}},"requester_email":"{{$requester_email}}","tag_names":{{$tag_names}},"assigned_to_id":{{$assigned_to_id}},"assigned_to_email":"{{$assigned_to_email}}","external_id":"{{$external_id}}"}}'