deleteInlineComment
Delete inline comment
Details
- Method:
DELETE - Path:
/inline-comments/{comment-id} - Operation ID:
deleteInlineComment
Parameters
{
"comment-id": {
"description": "The ID of the comment to be deleted.",
"required": true,
"location": "path",
"type": "integer",
"format": "int64"
}
}Usage
from ocp_agent import OCPAgent
agent = OCPAgent()
await agent.register_api('confluence')
# Call this tool
result = await agent.call_tool('deleteInlineComment', {
# Add required parameters here
})