redmine_get_issue
Fetch a Redmine issue's full context: description, metadata, journal history, attachments, children, and relations. Understand the complete ticket history before updating.
Instructions
Get full details of a Redmine issue including description, metadata, and (by default) all journal updates and attachments. Set include_journals=False for tickets with very long histories that would blow up your context (e.g. recurring incident tickets). Use this to understand the full history of a ticket before updating it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | The Redmine issue ID (e.g. 66853) | |
| include_children | No | Include child issue summaries. Default true. | |
| include_journals | No | Include the full comment/change history. Default true. Set false for huge tickets. | |
| include_relations | No | Include related-issue links. Default true. | |
| include_attachments | No | Include the attachments list. Default true. |