Google Calendar

GOOGLECALENDAR_REMOVE_ATTENDEE

Removes an attendee from a specified event in a Google Calendar; the calendar and event must exist.

Remote googlecalendar

Other tools also called GOOGLECALENDAR_REMOVE_ATTENDEE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "event_id": {
      "type": "string",
      "description": "Unique identifier of the event."
    },
    "calendar_id": {
      "type": "string",
      "default": "primary",
      "description": "Identifier of the Google Calendar to which the event belongs; 'primary' signifies the user's main calendar."
    },
    "attendee_email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the attendee to remove. Must match an attendee email present on the event.\nExample: \"[email protected]\""
    }
  }
}