Reference

Endpoint Move event to another calendar


Name

move_event

Description

Moves event from one calendar to another

Parameters

Parameter Required Options
Name: SourceCalendarId

Label: Source Calendar Id

YES
Name: TargetCalendarId

Label: Target Calendar Id

YES
Name: EventId

Label: Event ID

YES

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
Id DT_WSTR nvarchar(50) 50
If the column you are looking for is missing, consider customizing Google Calendar Connector.

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime.

Examples

SSIS

Use Google Calendar Connector in API Source or in API Destination SSIS Data Flow components to read or write data.

API Source

API Source - Google Calendar
Read and write Google Calendar data effortlessly. Integrate, manage, and automate events, calendars, and availability — almost no coding required.
Google Calendar
Move event to another calendar
Required Parameters
Source Calendar Id Fill-in the parameter...
Target Calendar Id Fill-in the parameter...
Event ID Fill-in the parameter...
SSIS API Source - Read from table or endpoint

API Destination

API Destination - Google Calendar
Read and write Google Calendar data effortlessly. Integrate, manage, and automate events, calendars, and availability — almost no coding required.
Google Calendar
Move event to another calendar
Required Parameters
Source Calendar Id Fill-in the parameter...
Target Calendar Id Fill-in the parameter...
Event ID Fill-in the parameter...
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

Move event to a different calendar

UPDATE move_event  -- Moves the event to a new calendar
WITH (SourceCalendarId='MySourceCalendarId',  -- Original calendar ID
      TargetCalendarId='MyTargetCalendarId',  -- Destination calendar ID
      Id='MyEventId')                         -- Event ID to move

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Move event to a different calendar

DECLARE @MyQuery NVARCHAR(MAX) = 'UPDATE move_event  -- Moves the event to a new calendar
WITH (SourceCalendarId=''MySourceCalendarId'',  -- Original calendar ID
      TargetCalendarId=''MyTargetCalendarId'',  -- Destination calendar ID
      Id=''MyEventId'')                         -- Event ID to move';

EXEC (@MyQuery) AT [LS_TO_GOOGLE_CALENDAR_IN_GATEWAY];