delete_label
Remove a specific label from your Gmail account by providing its ID. Simplify email organization and declutter your inbox with this targeted labeling tool.
Instructions
Delete a label
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the label to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the label to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}