modify_message
Add or remove labels from Gmail messages to organize your inbox and categorize emails for better email management.
Instructions
Modify the labels on a message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The ID of the message to modify | |
| addLabelIds | No | A list of label IDs to add to the message | |
| removeLabelIds | No | A list of label IDs to remove from the message |
Input Schema (JSON Schema)
{
"properties": {
"addLabelIds": {
"description": "A list of label IDs to add to the message",
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"description": "The ID of the message to modify",
"type": "string"
},
"removeLabelIds": {
"description": "A list of label IDs to remove from the message",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id"
],
"type": "object"
}