List issues
redmine_list_issuesSearch and filter issues across projects using status, assignee, tracker, dates, custom fields, saved queries, and pagination. Get a clear view of your board.
Instructions
Search and filter issues across one or all projects — the primary entry point for "what's on the board". Supports status/assignee/tracker/date/custom-field filters, saved queries, sorting, and pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort column, optionally with ":desc", e.g. "priority:desc,updated_on". | |
| limit | No | Maximum number of issues to return (Redmine caps at 100). | |
| offset | No | Pagination offset (skip N issues). | |
| include | No | Associations to expand on each issue: "attachments" and/or "relations". | |
| subject | No | Filter by subject text (substring match). | |
| due_date | No | Due-date filter; same operator grammar as created_on. | |
| query_id | No | Run a saved query by its numeric id. | |
| author_id | No | Author (reporter) user id, or "me". | |
| status_id | No | Status filter. A status id, or a shortcut: "open" (any open status), "closed" (any closed status), or "*" (any status). Defaults to open issues. | |
| created_on | No | Creation-date filter. Accepts Redmine operators, e.g. ">=2024-01-01", "<=2024-12-31", or "><2024-01-01|2024-06-30" for a range. | |
| project_id | No | Project id or identifier slug to scope to, e.g. "42" or "website". | |
| tracker_id | No | Tracker id, e.g. "1" for Bug. | |
| updated_on | No | Last-updated-date filter; same operator grammar as created_on. | |
| category_id | No | Issue category id. | |
| custom_fields | No | Custom-field filters keyed by field id, e.g. { "5": "urgent" } (exact match). Only fields enabled as a filter in Redmine apply; others are silently ignored. | |
| assigned_to_id | No | Assignee user id, or "me" for the API key's own user. | |
| fixed_version_id | No | Target version (milestone) id. |