All Questions
19 questions
-3
votes
1
answer
107
views
Calendar event updates with a Trigger
is it possible to get Calendar event updates and new events with a calendar trigger. so, that only updates and new events are pulled. and then the properties (description, start date, end date, etc..) ...
0
votes
0
answers
54
views
Inifinite loop on updating Google Calendar event by script (trigger issue)
I wrote a script to add tags and modify color of Google Calendar events.
The script :
select some events based on date range
apply some rules on the selected events
The script itself work just fine ...
0
votes
1
answer
57
views
SyntaxError: missing ) after argument list (line : 13, file : Code.gs)
I am very new to coding, and I keep getting this error when trying to save my script.
Heres the code:
function myFunction() {
const calID = '*email*'
const cal = CalendarApp.getCalendarById(calID) ...
0
votes
2
answers
863
views
Automatically add guest to new calendar event
This is the first Google Apps Script I have created, and I am having some trouble. I used ChatGPT to give me the code framework, which appears to be primarily correct; however, there is a problem ...
0
votes
1
answer
865
views
I can't make changes to a specific Instance of a recurring event in Google Calendar
I am utilizing an Apps Script code to synchronize Google Calendar and Google Sheets. This allows me to generate calendar events from Google Sheets and vice versa, resulting in the information being ...
1
vote
1
answer
700
views
Using onEdit Function Creating Calendar Event
I thing I'm really close here but for whatever reason this isn't generating a calendar event for me. This is based on the createEvent function from the following link: https://developers.google.com/...
0
votes
0
answers
335
views
Google Form to Google Calendar [duplicate]
I am attempting to have users answer questions in a Google Form, that is linked to a Google Sheet, and I have an Apps Script that will create a Google Calendar Event. I have an "On form submit&...
0
votes
1
answer
510
views
Auto-create google calendar events from multiple sheets in a workbook using a trigger and without creating duplicate events
I am woefully ignorant here, so any help is much appreciated. My apps script code is sloppy af and piecemealed together from examples online. I know it is trash and does not account for most of what I ...
0
votes
0
answers
84
views
"Exceeded maximum execution time" when concurrent Google Calendar Trigger are running
I have a Google Calendar Trigger which fires whenever a change in ones users calendar is detected. The Trigger sends some data to a 3rd party system and does some logic. It is important that ...
2
votes
0
answers
232
views
Google calendar add-on - Prevent multiple event triggering
I am developing a calendar add-on. According to my use-case, the add-on needs to be updated for the below scenarios.
Once the user opens an event.
Once the user adds/deletes a guest from the guests ...
0
votes
1
answer
172
views
Google Calendar API trigger when new event is created from Calendly
I have a Google AppScript for adding 3rd party video conferencing to Calendar events. I am looking for a way to add video conferencing automatically when an event is created in Google Calendar via an ...
0
votes
0
answers
37
views
Installable trigger notify without change in the event
We are working on Google Calendar Add-on and need some help regarding Add-on development. We are using the triggers to notify the us whenever there is any create/update/delete happen on the google ...
0
votes
1
answer
83
views
Triggered function failing based on TypeError: Cannot find function getMessages in object FULL
When I run the below code manually it works fine, but when running on a trigger it fails. I had a look for this FULL in the Google documentation, and the only context I can see it in is to do with ...
0
votes
2
answers
2k
views
Google Calendar events to Google Sheers automatic refresh with onEdit trigger
I am trying to grab time events from my Google Calendar into a Google Spreadsheet.
When a new time-event is created in my Google Calendar this event should be automatically synchronized into my ...
4
votes
0
answers
1k
views
Google scripts calendar "Event Updated" trigger: How to find the details (title id etc) of the triggering event?
I have created a function that runs with the "Event Updated" trigger. The function simply Logger.log's some text so I know it works. It looks like:
function deleteCalendarEvent(e){
...