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: SourceCalendarId

YES
Name: TargetCalendarId

Label: TargetCalendarId

YES
Name: EventId

Label: EventId

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 / write Google Calendar data inside your app; perform many Google Calendar operations without coding, just using easy to use high performance API Connector for Google Calendar
Google Calendar
Move event to another calendar
Required Parameters
SourceCalendarId Fill-in the parameter...
TargetCalendarId Fill-in the parameter...
EventId Fill-in the parameter...
SSIS API Source - Read from table or endpoint

API Destination

API Destination - Google Calendar
Read / write Google Calendar data inside your app; perform many Google Calendar operations without coding, just using easy to use high performance API Connector for Google Calendar
Google Calendar
Move event to another calendar
Required Parameters
SourceCalendarId Fill-in the parameter...
TargetCalendarId Fill-in the parameter...
EventId 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

Moves event to a different calendar

UPDATE move_event
  WITH (SourceCalendarId='MySourceCalendarId',
  TargetCalendarId='MyTargetCalendarId',
  EventId='MyEventId'
  )

SQL Server

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

Move event to a different calendar

Moves event to a different calendar

DECLARE @MyQuery NVARCHAR(MAX) = 'UPDATE move_event
  WITH (SourceCalendarId=''MySourceCalendarId'',
  TargetCalendarId=''MyTargetCalendarId'',
  EventId=''MyEventId''
  )';

EXEC (@MyQuery) AT [LS_TO_GOOGLE_CALENDAR_IN_GATEWAY];