delete_thread
Remove email threads by specifying their unique ID. The tool ensures targeted deletion, enhancing inbox organization and workflow efficiency within Gmail.
Instructions
Delete a thread
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The ID of the thread to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the thread to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}