redmine_get_issue
Retrieve a Redmine issue by ID. Optionally include comments, watchers, relations, children, attachments, and changesets with pagination and truncation controls.
Instructions
Get a specific issue. Comments (journals) are OFF by default to save tokens; the total count is always shown. Enable and page through comments with the journals_* params.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Issue ID | |
| include | No | Extra data besides journals: watchers, relations, children, attachments, changesets. Passing 'journals' here also turns comments on unless include_journals is explicitly set. | |
| journals_limit | No | Max comments to return when include_journals=true (1-100, default 10) | |
| journals_order | No | "desc" (newest first, default) or "asc" (oldest first) | |
| journals_offset | No | Comment start index for paging (default 0; with desc order, 0 = newest) | |
| include_journals | No | Return comment bodies (default false). When false, only the total count is shown. | |
| description_max_chars | No | Truncate the description to this many chars. Omit or 0 = full text. | |
| journal_notes_max_chars | No | Truncate each comment to this many chars (default 500). 0 = full text. |