get_message
Retrieve specific Gmail messages by ID with optional HTML body content for email management and analysis.
Instructions
Get a specific message by ID with format options
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The ID of the message to retrieve | |
| includeBodyHtml | No | Whether to include the parsed HTML in the return for each body, excluded by default because they can be excessively large |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the message to retrieve",
"type": "string"
},
"includeBodyHtml": {
"description": "Whether to include the parsed HTML in the return for each body, excluded by default because they can be excessively large",
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}