trash_thread
Move a Gmail thread to the trash by specifying its ID. Simplify email management and organize your inbox effectively with direct API integration.
Instructions
Move a thread to the trash
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The ID of the thread to move to trash |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the thread to move to trash",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}