Google Calendar

GOOGLECALENDAR_EVENTS_MOVE

Moves an event to another calendar, i.e., changes an event's organizer.

Remote googlecalendar

Other tools also called GOOGLECALENDAR_EVENTS_MOVE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "event_id": {
      "type": "string",
      "description": "Event identifier. To retrieve event identifiers call the events.list method.\nExample: \"7cbh8j70fer2s71jgm1bmeb0f1\""
    },
    "calendar_id": {
      "type": "string",
      "description": "Calendar identifier of the source calendar. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.\nExample: \"primary\""
    },
    "destination": {
      "type": "string",
      "description": "Calendar identifier of the destination calendar. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.\nExample: \"secondaryCalendarId\""
    },
    "send_updates": {
      "anyOf": [
        {
          "type": "string",
          "pattern": "^(all|externalOnly|none)$"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Guests who should receive notifications about the change of the event's organizer. Acceptable values are: \"all\": Notifications are sent to all guests. \"externalOnly\": Notifications are sent to non-Google Calendar guests only. \"none\": No notifications are sent. This is the default value if left unspecified.\nExamples:\n  \"all\"\n  \"externalOnly\"\n  \"none\""
    }
  }
}