list_issues
Retrieve issues from Redmine using advanced filters, sorting, and pagination. Filter by status, project, assignee, dates, and more to find specific issues.
Instructions
Lists issues in Redmine with advanced filters, sorting and pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| offset | No | Number of items to skip (default 0) | |
| limit | No | Number of items per page (default 25, max 100) | |
| sort | No | Sort field and direction. Examples: status:asc, priority:desc, updated_on:desc. Multiple: status:asc,priority:desc | |
| include | No | Comma-separated: attachments, relations, changesets, journals, watchers, allowed_statuses, children | |
| issue_id | No | Filter by issue ID(s). Comma-separated or range. Examples: 1,2,3 | |
| project_id | No | Filter by project ID or identifier | |
| subproject_id | No | Filter by subproject. Use !* to exclude subproject issues | |
| tracker_id | No | Filter by tracker ID | |
| status_id | No | Filter by status. Values: open, closed, * (all), or numeric ID | |
| priority_id | No | Filter by priority ID | |
| assigned_to_id | No | Filter by assignee. Numeric ID or me for current user | |
| author_id | No | Filter by author ID | |
| category_id | No | Filter by issue category ID | |
| fixed_version_id | No | Filter by target version ID | |
| parent_id | No | Filter by parent issue ID | |
| subject | No | Filter by subject. Use ~ prefix for contains: ~keyword | |
| created_on | No | Filter by creation date. Examples: >=2024-01-01, <=2024-12-31, ><2024-01-01|2024-12-31 | |
| updated_on | No | Filter by last updated date. Same format as created_on |