Get Redmine Issue
redmine_get_issueRetrieve detailed Redmine issue information by ID, with options for full details, custom fields, and related associations like attachments and journals.
Instructions
Get detailed information about a single Redmine issue by ID.
Args:
issue_id: The issue ID (required)
include: Associations: "journals", "children", "relations", "attachments", "changesets", "watchers". Include "attachments" to get the attachment IDs that redmine_download_attachment needs.
view: "compact" (default: id, subject, status, priority, assignee, done, tracker, project) or "full" (all fields + description + custom_fields)
fields: Override view with specific fields, e.g. ["id","subject","status","custom_fields"]. Available: id, subject, project, tracker, status, priority, author, assigned_to, category, fixed_version, parent, start_date, due_date, done_ratio, estimated_hours, spent_hours, created_on, updated_on, closed_on, custom_fields, description
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| view | No | compact (key fields only) or full (all details) | compact |
| fields | No | Specific fields to show, overrides view mode | |
| include | No | Associations to include: journals,children,relations,attachments,changesets,watchers | |
| issue_id | Yes | Issue ID |