Google Calendar

gcal_move_event

Move an event from one calendar to another. The event is removed from the source calendar and added to the destination.

Remote node2flow/google-calendar

Other tools also called gcal_move_event? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "event_id": {
      "type": "string",
      "description": "The event ID to move"
    },
    "calendar_id": {
      "type": "string",
      "description": "Source calendar ID where the event currently exists"
    },
    "destination": {
      "type": "string",
      "description": "Destination calendar ID to move the event to"
    },
    "send_updates": {
      "enum": [
        "all",
        "externalOnly",
        "none"
      ],
      "type": "string",
      "description": "Who to send notifications to"
    }
  }
}