get_delegate
Retrieve the details of a specified delegate associated with a Gmail account to manage email access and permissions directly through the Gmail API.
Instructions
Gets the specified delegate
Input Schema
Name | Required | Description | Default |
---|---|---|---|
delegateEmail | Yes | The email address of the delegate to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"delegateEmail": {
"description": "The email address of the delegate to retrieve",
"type": "string"
}
},
"required": [
"delegateEmail"
],
"type": "object"
}