Delete issue
jira_delete_issuePermanently delete a Jira issue, including comments, worklogs, and attachments. Irreversible and without undo; issues with subtasks require explicit deletion of subtasks as well.
Instructions
Permanently delete one issue. IRREVERSIBLE: Jira has no undo and no trash for this, the issue and its comments, worklogs and attachments are gone. Requires the server to run with JIRA_ALLOW_IRREVERSIBLE=true on top of the usual plan → apply; without it the plan still works and shows what would be destroyed. An issue with subtasks is refused unless deleteSubtasks is true, which deletes them too. Consider closing the issue instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apply | No | Set true to EXECUTE this write. Omit (or false) to get a plan of the request that would be sent. Executing also requires the server to run with JIRA_WRITE_MODE=apply. | |
| issue | Yes | Issue key (PROJ-123) or numeric issue id. | |
| plan_id | No | The single-use id returned by the preceding plan-mode call. Required together with apply: true; a mismatch means the arguments changed since the plan, and the write is refused rather than executed. | |
| profile | No | Named credential profile for this call. Omit to use the active profile. Rejected when the server locks the profile (JIRA_LOCK_PROFILE). | |
| deleteSubtasks | No | true also deletes every subtask of this issue. Default false, which makes Jira REFUSE an issue that has subtasks rather than take them silently. |