update-issue-comment
Modify an existing comment on a Plane issue by providing the project, issue, and comment IDs along with the updated text and visibility settings.
Instructions
Update an existing comment on an issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| access | No | Comment visibility: INTERNAL (default) or EXTERNAL | |
| comment | Yes | The updated comment text (will be converted to HTML) | |
| comment_id | Yes | ID of the comment to update | |
| 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": {
"access": {
"description": "Comment visibility: INTERNAL (default) or EXTERNAL",
"enum": [
"INTERNAL",
"EXTERNAL"
],
"type": "string"
},
"comment": {
"description": "The updated comment text (will be converted to HTML)",
"type": "string"
},
"comment_id": {
"description": "ID of the comment to update",
"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",
"comment"
],
"type": "object"
}