Delete issue
redmine_delete_issuePermanently delete a Redmine issue and all its associated data, including comments, time entries, and attachments. This action cannot be undone.
Instructions
Permanently delete an issue. THIS CANNOT BE UNDONE: Redmine has no trash and no restore, and the delete cascades — the issue's journals (comments), logged time entries, attachments, and relations are destroyed with it, and on many configurations its sub-issues are deleted too. Always confirm with the user before calling, quoting the issue id and subject (use redmine_get_issue to read them back first). In most situations the right tool is redmine_update_issue instead: setting a closed or rejected status_id takes the issue out of the way while keeping its history and staying reversible. Reserve this tool for genuine mistakes — duplicates, spam, or an issue filed in the wrong place. Requires the "Delete issues" permission; without it Redmine answers with a permission error.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | Numeric id of the issue to delete permanently. Deletion is irreversible and cascades: the issue's journals (comments), logged time entries, attachments, and relations go with it, and sub-issues may be deleted along with their parent. Confirm the id — and the intent — with the user before calling. |