Google Calendar ConnectorZappySys Google Calendar Connector provide read / write capability inside your app (see list below), using these drag and drop , high performance connector you can perform many Google Calendar operations without any coding. You can use this connector to integrate Google Calendar data inside apps like SSIS, SQL Server or popular ETL Platforms / BI Tools/ Reporting Apps / Programming languages (i.e. Informatica, Power BI, SSRS, Excel, C#, JAVA, Python) |
Click on your App below to get started with Google Calendar Integration
Actions supported by Google Calendar Connector
Google Calendar Connector support following actions for REST API integration. If some actions are not listed below then you can easily edit Connector file and enhance out of the box functionality.Parameter | Description |
---|---|
CalendarId |
|
Parameter | Description |
---|---|
CalendarId |
|
EventId |
|
Parameter | Description |
---|---|
CalendarId |
|
Parameter | Description |
---|---|
CalendarId |
|
EventId |
|
Parameter | Description |
---|---|
SourceCalendarId |
|
TargetCalendarId |
|
EventId |
|
Parameter | Description |
---|---|
Url |
|
Body |
|
IsMultiPart |
|
Filter |
|
Headers |
|
Google Calendar Connector Examples (For ODBC PowerPack)
This page offers a collection of SQL examples designed for seamless integration with the ZappySys API ODBC Driver under ODBC Data Source (36/64) or ZappySys Data Gateway, enhancing your ability to connect and interact with Prebuilt Connectors effectively.
List calendars [Read more...]
Lists calendars
SELECT * FROM Calendars
List events [Read more...]
Lists events
SELECT * FROM Events
WITH (CalendarId='MyCalendarId')
Get event [Read more...]
Gets event
SELECT * FROM get_event
WITH (CalendarId='MyCalendarId'
,EventId='MyEventId')
Create event [Read more...]
Creates event
INSERT INTO Events(StartsAt, StartsInTimeZone, EndsAt, EndsInTimeZone, Summary,
Attendees, Description, Location, Status, Transparency, Visibility)
VALUES ('2021-11-26T16:30:50', 'Europe/Vilnius', '2021-11-27T16:30:50','Europe/Vilnius', 'This is an event',
null, 'My Description', 'Vilnius', 'confirmed', 'opaque', 'default')
WITH (CalendarId='YourCalendarId')
Get event [Read more...]
Gets event
DELETE FROM Events
WITH (CalendarId='MyCalendarId',
EventId='MyEventId')
Move event to a different calendar [Read more...]
Moves event to a different calendar
UPDATE move_event
WITH (SourceCalendarId='MySourceCalendarId',
TargetCalendarId='MyTargetCalendarId',
EventId='MyEventId'
)