gitlab_get_user_reported_issues
Retrieve all issues reported by a specific user across all accessible GitLab projects, including closed issues. Track reporting patterns, monitor resolution progress, and analyze user feedback. Works with user ID or username, filtering by state, date, and sorting options.
Instructions
List all issues created/reported by a specific user (including closed ones).
Shows issues where the user is the original reporter/creator. Use this tool to see what problems or requests a user has reported.
Examples:
- Bug reporting patterns: get_user_reported_issues(user_id=123)
- User feedback analysis
- Historical issue creation
Find all issues originally created by the specified user across all accessible projects, with current status and resolution tracking.
For issues currently assigned to a user, use 'gitlab_get_user_open_issues' instead.
Returns reported issues with:
- Issue details: title, description, current state
- Progress tracking: assignees, resolution status
- Timeline: creation, updates, resolution dates
- Engagement: comments, watchers, related issues
- Project context: where issue was reported
Use cases:
- Track personal issue reporting patterns
- Follow up on submitted problems
- Monitor issue resolution progress
- Generate user engagement reports
Parameters:
- user_id: Numeric user ID
- username: Username string (use either user_id or username)
- state: Filter by state (opened, closed, all)
- since: Issues created after date (YYYY-MM-DD)
- until: Issues created before date (YYYY-MM-DD)
- sort: Sort order (created, updated, closed)
- per_page: Results per page (default: 20)
- page: Page number (default: 1)
Example: Get recently reported issues
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for pagination Type: integer Range: ≥1 Default: 1 Example: 3 (to get the third page of results) Note: Use with per_page to navigate large result sets | |
per_page | No | Number of results per page Type: integer Range: 1-100 Default: 20 Example: 50 (for faster browsing) Tip: Use smaller values (10-20) for detailed operations, larger (50-100) for listing | |
since | No | Issues created after date (YYYY-MM-DD) | |
sort | No | Sort order | created |
state | No | Filter by state | opened |
until | No | Issues created before date (YYYY-MM-DD) | |
user_id | No | Numeric user ID | |
username | No | Username string |