Google Super

GOOGLESUPER_REMOVE_ATTENDEE

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

Remote googlesuper

Other tools also called GOOGLESUPER_REMOVE_ATTENDEE? See providers with this name

Input Schema


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