Open Context Protocol is live! 🚀 Read the launch post
deleteIssueLinkType

deleteIssueLinkType

Delete issue link type

Details

  • Method: DELETE
  • Path: /rest/api/3/issueLinkType/{issueLinkTypeId}
  • Operation ID: deleteIssueLinkType

Parameters

{
  "issueLinkTypeId": {
    "description": "The ID of the issue link type.",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('jira')

# Call this tool
result = await agent.call_tool('deleteIssueLinkType', {
    # Add required parameters here
})