get_message
Retrieve a specific Basecamp message by ID and render its content in markdown, HTML, text, or raw JSON format for easy access and processing.
Instructions
Fetch a single message by ID; render body as markdown/html/text, or return raw JSON.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message_id | Yes | ||
project_id | Yes | ||
render | No |
Input Schema (JSON Schema)
{
"properties": {
"message_id": {
"type": "integer"
},
"project_id": {
"type": "integer"
},
"render": {
"enum": [
"markdown",
"html",
"text",
"json"
],
"type": "string"
}
},
"required": [
"project_id",
"message_id"
],
"type": "object"
}