Open Context Protocol is live! 🚀 Read the launch post

deleteIssueLink

Delete issue link

Details

  • Method: DELETE
  • Path: /rest/api/3/issueLink/{linkId}
  • Operation ID: deleteIssueLink

Parameters

{
  "linkId": {
    "description": "The ID of the issue link.",
    "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('deleteIssueLink', {
    # Add required parameters here
})