delete_ticket
Remove a specific Jira ticket using its issue ID or key via the Jira REST API endpoint /rest/api/3/issue/{issueIdOrKey}. Input the ticket identifier to delete.
Instructions
Delete a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}. Do not use markdown in your query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueIdOrKey | Yes | The issue id or key |
Input Schema (JSON Schema)
{
"properties": {
"issueIdOrKey": {
"description": "The issue id or key",
"type": "string"
}
},
"required": [
"issueIdOrKey"
],
"type": "object"
}