 GetEvent
GetEvent
Fetch a Google Calendar event by ID.
yaml
type: "io.kestra.plugin.googleworkspace.calendar.GetEvent"Examples
yaml
id: googleworkspace_calendar_get_event
namespace: company.team
tasks:
  - id: get_event
    type: io.kestra.plugin.googleworkspace.calendar.GetEvent
    serviceAccount: "{{ secret('GCP_SERVICE_ACCOUNT_JSON') }}"
    calendarId: primary
    eventId: "abcdef123456"
    maxAttendees: 50
    alwaysIncludeEmail: true
Properties
calendarId *Requiredstring
Calendar ID (e.g., 'primary' or a calendar email)
eventId *Requiredstring
Event ID
alwaysIncludeEmail booleanstring
 Default 
falseWhether to include the email of the organizer/attendees in the response
maxAttendees integerstring
Upper bound on the number of attendees to include
readTimeout integerstring
 Default 
120The read timeout for the request (in seconds)
scopes array
 SubType string
 Default 
["https://www.googleapis.com/auth/calendar"]The GCP scopes to used
serviceAccount string
The GCP service account key
Outputs
event Event
Full Google Calendar event resource (wrapped)
metadata object
Complete metadata of Google Calendar event resource
