add_delegate
Grant email access by adding a delegate to a specified Gmail account. Use this tool to assign permissions for managing emails, streamlining workflows with Gmail API integration.
Instructions
Adds a delegate to the specified account
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| delegateEmail | Yes | Email address of delegate to add |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"delegateEmail": {
"description": "Email address of delegate to add",
"type": "string"
}
},
"required": [
"delegateEmail"
],
"type": "object"
}