batch_delete_messages
Delete multiple Gmail messages at once by specifying their IDs, helping you manage your inbox efficiently by removing unwanted emails in bulk.
Instructions
Delete multiple messages
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | The IDs of the messages to delete |
Input Schema (JSON Schema)
{
"properties": {
"ids": {
"description": "The IDs of the messages to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}