get_thread
Retrieve a specific Gmail conversation thread by its unique ID to access the complete email exchange, with optional HTML content inclusion for detailed message viewing.
Instructions
Get a specific thread by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The ID of the thread 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 thread 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"
}