get_comment
Retrieve complete comment details including text, author information, parent context, reply threads, and attached files from Productive.io using the comment ID.
Instructions
Get specific comment details with full context and discussion thread.
Returns detailed comment information including:
Complete comment text and formatting
Author details and timestamp
Parent entity (project, task, etc.) with full context
Reply thread and conversation flow
Attached files, images, or documents
Mentions and references to team members
Args: comment_id: Productive comment ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment_id | Yes | Productive comment ID |
Input Schema (JSON Schema)
{
"properties": {
"comment_id": {
"description": "Productive comment ID",
"type": "integer"
}
},
"required": [
"comment_id"
],
"type": "object"
}