create_label
Create new Gmail labels to organize emails and categorize messages in your inbox for better email management.
Instructions
Create a new Gmail label
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Label name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Label name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}