Skip to main content
Remove attendee from event action removes a single attendee from an existing Google Calendar event. This is a write action that modifies the event’s attendee list without affecting other event details.

Prerequisites

  • Ensure a connected Google Calendar account exists for the user.
  • The connected account must have permission in Google Calendar to add events.
  • Google Calendar must be connected as a data source for Glean actions.

Supported parameters

ParameterTypeDescription
Attendee emailStringEmail address of the attendee you want to remove from the event.
Event IDStringIdentifier of the specific calendar event from which the attendee will be removed.
Calendar IDStringIdentifier of the calendar that owns the event. Use “primary” for the user’s main calendar.

Usage examples

This action requires an Event ID. Use the Find event action to locate the event and retrieve its Event ID before removing an attendee.

Troubleshooting

  • Possible cause: The attendee email address does not exactly match any attendee on the event, or the attendee was already removed.
  • Fix: Verify that the attendee email matches exactly (including case and domain) with an attendee on the event. Use Find event to retrieve the current attendee list and confirm the email address before calling Remove attendee from event.
  • Possible cause: The event ID or calendar ID does not match an existing event that the user can access, or the event may have been deleted.
  • Fix: Use Find event to retrieve a valid event ID before calling Remove attendee from event. Ensure the calendar ID is correct (use “primary” for the user’s main calendar).
  • Possible cause: The connected Google Calendar account does not have permission to modify the event, or the OAuth token is invalid or expired.
  • Fix: Confirm that the user’s connected account has edit permissions for the event (organizer or writer access). If needed, reconnect the Google Calendar account to refresh the OAuth token.

FAQs

Notification behavior is controlled by Google Calendar’s settings, not by this action. Google Calendar will automatically send update notifications to remaining attendees according to the calendar’s notification preferences.
No. This action removes one attendee at a time. To remove multiple attendees, call the action multiple times with different attendee email addresses, or use the Update google event action to replace the entire attendee list.
The action will complete without error, but no changes will be made to the event since the specified attendee was not present in the attendee list.
No. The event organizer cannot be removed from their own event. This action only removes non-organizer attendees from the guest list.