Questions tagged [google-calendar-recurring-events]

34 questions
8
votes
2 answers

Google Calendar - could not find the requested event

I created event in my Google Calendar, and then publish it on website (as a HTML code from Google calendar). URL to event:…
5
votes
2 answers

Copy a programmatically created recurring event?

Using Google Apps Script, I created a calendar that has a complex recurring event. However, I'm not able to copy that event to another calendar as a recurring event. Note: the recurring rule can't be generated or edited via the web interface. For a…
4
votes
3 answers

Google Calendar script: remove recurrence

I'm iterating through a spreadsheet of events and modifying my calendar accordingly. I can use setRecurrence to create multi-day events, but I can't figure out how to remove the class and turn it back into a single-day event. It's important to…
4
votes
1 answer

How to Read Calendar Event Recurrence Settings Using Google Apps Script

I can't seem to figure out a way how to read recurrence settings of an CalendarEventSeries using Google Apps Script. There is a setRecurrence method; I am looking for something like getRecurrence hoping it would return an EventRecurrence object…
3
votes
0 answers

How do i get raw ics (google calendar) file from Google Calendar API

Here is my example code: String eventId = "XXX"; String calendarId = "YYY"; outputStream = new FileOutputStream("C:\\Users\\AAA\\Documents\\notepads\\output-text.ics"); calendarService.events().get(calendarId,…
3
votes
1 answer

How to modify a specific instance of an event series

Let's suppose I create a recurring event that starts on Monday at 9 AM and ends at 11 AM, this event repeats every day for 3 days. Now I want (after I have created the events using recurrence) to change the start time of the event on Tuesday while…
3
votes
1 answer

Deleting Future Events only in Google Calendar Event Series

I have an event Series in my calendar, and I can not delete Future Events only using Apps Script. The only function I found is "deleteEventSeries" which deletes all the events (previous and past). I tried looping on Calendar events within a certain…
2
votes
1 answer

Programmatically add ics meeting invite to Google Calendar

I'm working ics meeting invite using c#. When we send mail invite to outlook mail it automatically adds meeting invite in outlook calendar but it doesn't automatically add invite in Google Calendar until we accept the invitation by clicking on yes…
Shreyas Pednekar
  • 1,285
  • 5
  • 31
  • 53
2
votes
1 answer

Google Calendar API Recurrent Event, EXDate not working

I want to create a recurrent event into Google Calendar with one day exclusive. I used Google Calendar APi explorer. Below is the Request Data { "end": { "dateTime": "2020-02-24T19:00:00+05:00", "timeZone": "Asia/Karachi" }, "start":…
2
votes
1 answer

Get recurrence of CalendarEvent in G-Suite Addon

I'm working on a Google Calendar addon that synchronizes event data with an external service. It's easy to get data like title, description, dates etc. of an event and I can even check wether it's a recurring event or not with…
2
votes
0 answers

Is it possible to develop an add-on for Google Calendar?

We would like to create a google Calendar add-on/plugin/extension that will let us push the event to our cloud hosted application when creating or editing an event in Google calendar. We have a cloud hosted application that our clients use. One of…
1
vote
2 answers

Google Calendar API: Event duplicated when editing single event in series

I'm having an issue when pulling/listing an event feed from Google Calendar in python, using gdata 2.0.16. If one event in a series of recurring events is edited, that specific event is duplicated. The Google Calendar web interface doesn't show…
1
vote
1 answer

rfc 5545 recurrance start date issue

I have been trying to automate some event creations at the facility I work in. With Google Calendar API I am creating events and adding attendees. event = { 'summary': 'testing the calendar api', 'start': {'dateTime':…
1
vote
1 answer

How do I hide guest list in google calendar using app script

I'm using google app script in google sheet to send a calendar invite to contacts. I've grouped my contacts for the events, so each row has 2 column: Event Name and List of Emails. Using below function (just an example) in the script editor, I'm…
1
vote
1 answer

How can I change onlyOnWeekday(day) with weekday from Google Sheets?

I can make this example example work. What I need is to set the weekday from a cell in column "weekday". I have tried this: if(type=='PD'){ var recurrence = CalendarApp.newRecurrence().addWeeklyRule().onlyOnWeekday(weekday); …
1
2 3