Skip to content

Instantly share code, notes, and snippets.

View nizioleque's full-sized avatar

Norbert Kosma Niziołek nizioleque

View GitHub Profile
@nizioleque
nizioleque / Code.gs
Last active December 24, 2024 21:04
Google Calendar events bulk edit (with Google Apps Script)
function start() { main(); }
// CONFIGURE BELOW ------------------------------------------------
const Test = true;
const TestFn = events => {
const testEvent = events[0];
console.log(testEvent);
const response = updateEvent(testEvent);