Update Redmine Issue
redmine_update_issueUpdate an existing Redmine issue by changing only the fields you specify, such as subject, status, assignee, dates, progress, or notes.
Instructions
Update an existing Redmine issue. Only provided fields will be changed.
Args:
issue_id: Issue ID (required)
subject: New subject
tracker_id / status_id / priority_id: Change tracker, status, or priority
assigned_to_id: Reassign (use 0 to unassign)
description: Update description
notes: Add a comment/note to the issue
done_ratio: Update % done (0-100)
start_date / due_date: Update dates
estimated_hours: Update estimate
category_id / fixed_version_id: Update category or version
Returns: Confirmation of update.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Add a comment/note | |
| subject | No | New subject | |
| due_date | No | New due date (YYYY-MM-DD) | |
| issue_id | Yes | Issue ID to update | |
| status_id | No | New status ID | |
| done_ratio | No | New % done | |
| start_date | No | New start date (YYYY-MM-DD) | |
| tracker_id | No | New tracker ID | |
| category_id | No | New category ID | |
| description | No | New description | |
| priority_id | No | New priority ID | |
| custom_fields | No | Custom field values, e.g. [{id: 1, value: 'text'}] | |
| assigned_to_id | No | New assignee ID (0 to unassign) | |
| estimated_hours | No | New estimated hours | |
| fixed_version_id | No | New version ID |