Sign in

List tasks for user

documented

Get a list of tasks created or assigned to a specific user.

GET /api_v2/users/{user_id}/tasks.jsonUsersno 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://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}}"