gistsDeleteComment
Delete a gist comment
Details
- Method:
DELETE - Path:
/gists/{gist_id}/comments/{comment_id} - Operation ID:
gists/delete-comment
Parameters
{
"gist_id": {
"description": "The unique identifier of the gist.",
"required": true,
"location": "path",
"type": "string"
},
"comment_id": {
"description": "The unique identifier of the comment.",
"required": true,
"location": "path",
"type": "integer",
"format": "int64"
}
}Usage
from ocp_agent import OCPAgent
agent = OCPAgent()
await agent.register_api('github')
# Call this tool
result = await agent.call_tool('gistsDeleteComment', {
# Add required parameters here
})