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

deleteRemoteIssueLinkById

Delete remote issue link by ID

Details

  • Method: DELETE
  • Path: /rest/api/3/issue/{issueIdOrKey}/remotelink/{linkId}
  • Operation ID: deleteRemoteIssueLinkById

Parameters

{
  "issueIdOrKey": {
    "description": "The ID or key of the issue.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "linkId": {
    "description": "The ID of a remote 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('deleteRemoteIssueLinkById', {
    # Add required parameters here
})