Google Calendar
GOOGLECALENDAR_EVENTS_INSTANCES
Returns instances of the specified recurring event.
Remote googlecalendar
Other tools also called GOOGLECALENDAR_EVENTS_INSTANCES?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"eventId": {
"type": "string",
"description": "Recurring event identifier.\nExample: \"a1b2c3d4e5f6g7h8i9j0k1l2m3\""
},
"timeMax": {
"type": [
"string",
"null"
],
"default": null,
"description": "Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone offset.\nExample: \"2024-07-31T23:59:59Z\""
},
"timeMin": {
"type": [
"string",
"null"
],
"default": null,
"description": "Lower bound (inclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset.\nExample: \"2024-07-01T00:00:00Z\""
},
"timeZone": {
"type": [
"string",
"null"
],
"default": null,
"description": "Time zone used in the response. Optional. The default is the time zone of the calendar.\nExamples:\n \"America/Los_Angeles\"\n \"Europe/London\""
},
"pageToken": {
"type": [
"string",
"null"
],
"default": null,
"description": "Token specifying which result page to return. Optional."
},
"calendarId": {
"type": "string",
"description": "Calendar identifier. To retrieve calendar IDs call the `calendarList.list` method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.\nExamples:\n \"primary\"\n \"[email protected]\""
},
"maxResults": {
"anyOf": [
{
"type": "integer",
"maximum": 2500,
"minimum": 1
},
{
"type": "null"
}
],
"default": null,
"description": "Maximum number of events returned on one result page. By default the value is 250 events. The page size can never be larger than 2500 events. Optional.\nExamples:\n 100\n 250"
},
"showDeleted": {
"type": [
"boolean",
"null"
],
"default": null,
"description": "Whether to include deleted events (with status equals \"cancelled\") in the result. Cancelled instances of recurring events will still be included if `singleEvents` is False. Optional. The default is False.\nExamples:\n true\n false"
},
"maxAttendees": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional.\nExamples:\n 5\n 10"
},
"originalStart": {
"type": [
"string",
"null"
],
"default": null,
"description": "The original start time of the instance in the result. Optional.\nExample: \"2024-07-15T10:00:00Z\""
}
}
}