list_events
Retrieve and display upcoming calendar events within specified time ranges and result limits using the Google Toolbox. Simplify event tracking and scheduling.
Instructions
List upcoming calendar events
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_results | No | ||
| time_max | No | ||
| time_min | No |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 10,
"title": "Max Results",
"type": "integer"
},
"time_max": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Time Max"
},
"time_min": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Time Min"
}
},
"title": "list_eventsArguments",
"type": "object"
}