get_comments
Retrieve comments for a specific Basecamp item using the item ID and project ID to manage discussions and feedback efficiently within Basecamp 3.
Instructions
Get comments for a Basecamp item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The project ID | |
recording_id | Yes | The item ID |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "The project ID",
"type": "string"
},
"recording_id": {
"description": "The item ID",
"type": "string"
}
},
"required": [
"recording_id",
"project_id"
],
"type": "object"
}