GoogleCalendar_EventsSearch

Description

Returns events on the specified GoogleCalendar calendar.


Auth

AuthJSON InArgument<String> REQUIRED

The JSON authentication string.

Read Google official Documentation for more information about how to get credentials.

Input

CalendarId InArgument<String> REQUIRED

The id of the calendar where to search for the events.

Free text search terms to find events that match these terms in the following fields: summary, description, location, attendee's displayName, attendee's email.

ShowDeleted InArgument<Boolean>

Sets whether to show deleted events or not.

SingleEvents InArgument<Boolean>

Sets whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves. The default is False.

Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time.

Lower bound (exclusive) for an event's end time to filter by. Optional. The default is not to filter by end time.

UpdatedMin InArgument<DateTime?>

Lower bound for an event's last modification time to filter by. When specified, entries deleted since this time will always be included regardless of showDeleted. The default is not to filter by last modification time.


Output

Result OutArgument<List<Event>> REQUIRED

The list of all the events that matches the search criteria.