listIssues
listIssuesBrowse Redmine issue summaries using structured filters, saved queries, custom fields, sorting, and pagination to locate specific issues.
Instructions
Browse issue summaries with structured Redmine filters, saved queries, custom-field filters, sorting and pagination. Use searchIssues when only free text is known, or getIssue for one known issue's complete context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort field and direction, e.g. 'updated_on:desc' | |
| limit | No | ||
| offset | No | ||
| queryId | No | Saved query ID; from listQueries | |
| statusId | No | Status filter: open (default), closed, * (all), or a numeric status ID from listStatuses | |
| projectId | No | Project identifier or numeric ID | |
| trackerId | No | Tracker ID (issue type); from listTrackers | |
| versionId | No | Version/milestone ID; from listVersions | |
| priorityId | No | Priority ID; from listPriorities | |
| assignedToUserId | No | ||
| customFieldFilters | No | Custom field filters in query-string form, e.g. 'cf_10=rtk&cf_3=502167' |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | Yes | Maximum number of issues that may appear on this page. | |
| issues | No | Issues on this page. | |
| offset | Yes | Zero-based offset of the first issue on this page. | |
| totalCount | Yes | Total number of issues matching the query across all pages. |