list_calendars
Retrieve a formatted list of accessible calendars for a user, including details like summary, ID, and primary status, using their Google email address.
Instructions
Retrieves a list of calendars accessible to the authenticated user.
Args:
user_google_email (str): The user's Google email address. Required.
Returns:
str: A formatted list of the user's calendars (summary, ID, primary status).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
service | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"service": {
"title": "service",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"service",
"user_google_email"
],
"title": "list_calendarsArguments",
"type": "object"
}