get-issue-comment
Retrieve detailed information about a specific comment from an issue in your Plane project management system by providing project, issue, and comment identifiers.
Instructions
Get detailed information about a specific comment
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| comment_id | Yes | ID of the comment to retrieve | |
| 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 retrieve",
"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"
}