modify_email
Manage email labels by archiving, trashing, or marking emails as read/unread. Add or remove labels to organize and streamline email workflows efficiently.
Instructions
Modify email labels (archive, trash, mark read/unread, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
add_labels | No | ||
id | Yes | ||
remove_labels | No |
Input Schema (JSON Schema)
{
"properties": {
"add_labels": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Add Labels"
},
"id": {
"title": "Id",
"type": "string"
},
"remove_labels": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Remove Labels"
}
},
"required": [
"id"
],
"title": "modify_emailArguments",
"type": "object"
}