get_thread
Retrieve a specific Gmail thread by its unique ID. Choose to include or exclude parsed HTML in the email body for efficient handling of large email content.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}