batch_apply_labels
Apply multiple labels to selected emails simultaneously to organize your Gmail inbox efficiently.
Instructions
Apply labels to multiple emails at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
labelIds | Yes | Array of label IDs to apply | |
messageIds | Yes | Array of email message IDs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"labelIds": {
"description": "Array of label IDs to apply",
"items": {
"type": "string"
},
"type": "array"
},
"messageIds": {
"description": "Array of email message IDs",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"messageIds",
"labelIds"
],
"type": "object"
}