redmine_update_issue
Update an existing Redmine issue by modifying fields like subject, description, status, priority, or adding notes and attachments.
Instructions
Update an existing issue in Redmine
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Issue ID to update | |
| notes | No | Update notes/comment (in Markdown format) | |
| subject | No | Issue subject/title | |
| uploads | No | File attachments to add (use redmine_upload_file first to get tokens) | |
| due_date | No | Due date (YYYY-MM-DD) | |
| status_id | No | Status ID | |
| done_ratio | No | Completion percentage (0-100) | |
| is_private | No | Whether the issue is private | |
| start_date | No | Start date (YYYY-MM-DD) | |
| tracker_id | No | Tracker ID | |
| category_id | No | Category ID | |
| description | No | Issue description (in Markdown format) | |
| priority_id | No | Priority ID | |
| private_notes | No | Whether the notes are private | |
| assigned_to_id | No | Assigned user ID | |
| estimated_hours | No | Estimated hours | |
| parent_issue_id | No | Parent issue ID | |
| fixed_version_id | No | Target version ID | |
| custom_field_values | No | Custom field values as key-value pairs |