deleteComment
Delete comment
Details
- Method:
DELETE - Path:
/rest/api/3/issue/{issueIdOrKey}/comment/{id} - Operation ID:
deleteComment
Parameters
{
"issueIdOrKey": {
"description": "The ID or key of the issue.",
"required": true,
"location": "path",
"type": "string"
},
"id": {
"description": "The ID of the comment.",
"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('deleteComment', {
# Add required parameters here
})