batch_delete_messages
Remove multiple Gmail messages at once by specifying their IDs. Streamline email management with bulk deletion to keep your inbox organized.
Instructions
Delete multiple messages
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| ids | Yes | The IDs of the messages to delete | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "ids": {
      "description": "The IDs of the messages to delete",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "ids"
  ],
  "type": "object"
}