All Questions
Tagged with google-apps-script google-calendar-api
889 questions
0
votes
1
answer
67
views
getStartTime/getEndTime
Im currently working on a simple internal add-on for google calendar. When we click a event we will choose a option from a dropdown and click a button. When that happens, take the selected item with ...
-1
votes
1
answer
87
views
Exception: The parameters (String,String,null,(class)) don't match the method signature for CalendarApp.Calendar.createEvent
I am trying to create a google sheet that I can use to schedule a workshop servicing calendar.
I have followed the below tutorial but am getting something wrong, hoping someone can easily identify the ...
0
votes
1
answer
112
views
Find all recurring events in Google Calendar using Google Apps Script or the Google Calendar API
I am using getEvents to find events. It returns all events expanded. So if there is a recurring event, it returns all instances. I want just the original/main/root instance.
I know I can use ...
0
votes
1
answer
68
views
Too many calendars or calendar events in a short time error [duplicate]
I have been using this script successfully for a long time, but about a month ago I started getting the error "You have been creating or deleting too many calendars or calendar events in a short ...
-3
votes
1
answer
108
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
63
views
Can't access guest list
I've written a script that is supposed to create a folder in my drive, when a Calendar event is created, this folder is supposed to contain the names of the two participants. However, no matter what I ...
0
votes
2
answers
194
views
How to add guest to event - without sending an email preferably
I need to add to an existing script...
It needs to add the created event, including all the event details, to the guests calendar without sending an email or invite.
Here is my sheet, look at the '...
1
vote
0
answers
87
views
Google Form app script to add email to calendar event returns ReferenceError: email is not defined at onFormSubmit(Code:47:34)
I thought this would be simple. I have a Google Calendar Event and a Google Form. I'm trying to edit the app script so that when the user submits their email address, the only field on the form, it ...
0
votes
0
answers
44
views
How to Get Shareable Link for a Google Calendar I Own via Apps Script
I am composing emails to send out (using html format) and I want to include a google calendar shareable link (I own the google calendar). So far I have:
year = 2025;
var idlink = CalendarApp....
2
votes
1
answer
80
views
Unable to Enable Attendance Report for Google Meet via Calendar API
We want to enable the "Attendance Report" feature for all Google Meet events in a specific calendar in our Google Workspace environment. While we can successfully create events with Google ...
0
votes
0
answers
45
views
Google Apps Script onEventUpdated Trigger Fires Multiple Times for All-Day Events
I am working on a GSuite Add-on and have created a trigger to handle calendar event updates. Here's the setup:
const trigger = ScriptApp.newTrigger(handleCalendarChangeTrigger)
.forUserCalendar(...
0
votes
1
answer
210
views
Modify Free / Busy in an Google Calendar Event with Google apps script doesn't work
I'm trying to change the visibility detail of an event in my "primary" calendar from Busy to Free for some events... this doesn't fail BUT this doesn't work.
**To recrate: **
In your ...
0
votes
0
answers
77
views
Google Script Shows Completed Execution When Run but No Results are Generated
The script creates a google calendar event upon form submission. It has run without a problem for 4 years and now doesn't work when the form is submitted or when run from the editor. Below is what ...
0
votes
0
answers
54
views
Send e-mail to notify about event in shared google calendar using Apps Script
I am making a google calendar which takes the birth date of employees and calculates their age, so that they have a note in the calendar saying what age they are turning. This updates automatically to ...
2
votes
2
answers
162
views
Calendar Event Time Incorrect in Script despite Correct Formatting in Google Sheets
I'm currently working on a Google Apps Script that automatically creates events in Google Calendar based on data from a Google Sheets document. The script executes successfully, and events are created,...