deleteIssueType
Delete issue type
Details
- Method:
DELETE - Path:
/rest/api/3/issuetype/{id} - Operation ID:
deleteIssueType
Parameters
{
"id": {
"description": "The ID of the issue type.",
"required": true,
"location": "path",
"type": "string"
},
"alternativeIssueTypeId": {
"description": "The ID of the replacement issue type.",
"required": false,
"location": "query",
"type": "string"
}
}Usage
from ocp_agent import OCPAgent
agent = OCPAgent()
await agent.register_api('jira')
# Call this tool
result = await agent.call_tool('deleteIssueType', {
# Add required parameters here
})