List tasks for user
documentedGet a list of tasks created or assigned to a specific user.
GET /api_v2/users/{user_id}/tasks.jsonUsersno 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/users/{{$user_id}}/tasks.json" \
-G \
-u "{{BUGHERD_API_KEY}}:x" \
-H "Accept: application/json" \
-d "updated_since={{$updated_since}}" \
-d "created_since={{$created_since}}" \
-d "priority={{$priority}}" \
-d "tag={{$tag}}" \
-d "assigned_to_id={{$assigned_to_id}}" \
-d "page={{$page}}"