remove_label
Remove a specific label from an email message in Gmail to help organize your inbox and categorize messages more effectively.
Instructions
Remove a label from an email
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labelId | Yes | Label ID to remove | |
| messageId | Yes | Email message ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"labelId": {
"description": "Label ID to remove",
"type": "string"
},
"messageId": {
"description": "Email message ID",
"type": "string"
}
},
"required": [
"messageId",
"labelId"
],
"type": "object"
}