list_month_events
Retrieve a complete list of all events for a specified year and month from Google Calendar using natural language commands with OAuth2 authentication.
Instructions
지정한 연/월의 모든 일정 목록 조회
Input Schema
Name | Required | Description | Default |
---|---|---|---|
month | Yes | ||
year | Yes |
Input Schema (JSON Schema)
{
"properties": {
"month": {
"title": "Month",
"type": "integer"
},
"year": {
"title": "Year",
"type": "integer"
}
},
"required": [
"year",
"month"
],
"title": "list_month_eventsArguments",
"type": "object"
}