delete-issue-comment
Remove unwanted or incorrect comments from issues in Plane projects by specifying project, issue, and comment IDs.
Instructions
Delete a comment from an issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| comment_id | Yes | ID of the comment to delete | |
| issue_id | Yes | ID of the issue containing the comment | |
| project_id | Yes | ID of the project containing the issue |
Input Schema (JSON Schema)
{
"properties": {
"comment_id": {
"description": "ID of the comment to delete",
"type": "string"
},
"issue_id": {
"description": "ID of the issue containing the comment",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"comment_id"
],
"type": "object"
}