google_gmail_delete_email
Delete or move Gmail emails to trash using the message ID; choose permanent deletion or temporary removal to declutter your inbox effectively.
Instructions
Delete or trash an email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
messageId | Yes | ID of the email to delete | |
permanently | No | Whether to permanently delete or move to trash |
Input Schema (JSON Schema)
{
"properties": {
"messageId": {
"description": "ID of the email to delete",
"type": "string"
},
"permanently": {
"description": "Whether to permanently delete or move to trash",
"type": "boolean"
}
},
"required": [
"messageId"
],
"type": "object"
}