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

deleteCommentProperty

Delete comment property

Details

  • Method: DELETE
  • Path: /rest/api/3/comment/{commentId}/properties/{propertyKey}
  • Operation ID: deleteCommentProperty

Parameters

{
  "commentId": {
    "description": "The ID of the comment.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "propertyKey": {
    "description": "The key of the property.",
    "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('deleteCommentProperty', {
    # Add required parameters here
})