get_campfire_lines
Retrieve recent messages from a Basecamp campfire chat room by specifying the project ID and campfire ID to stay updated on team discussions and collaboration.
Instructions
Get recent messages from a Basecamp campfire (chat room)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campfire_id | Yes | The campfire/chat room ID | |
project_id | Yes | The project ID |
Input Schema (JSON Schema)
{
"properties": {
"campfire_id": {
"description": "The campfire/chat room ID",
"type": "string"
},
"project_id": {
"description": "The project ID",
"type": "string"
}
},
"required": [
"project_id",
"campfire_id"
],
"type": "object"
}