I have to change the google calendar notification time from 30 minutes to 5 minutes.
const encodedUrl = encodeURI(
[
"https://www.google.com/calendar/render",
"?action=TEMPLATE",
`&text=${calendarEvent.title || ""}`,
`&dates=${startDate || ""}`,
`/${endDate || ""}`,
`&add=elf1@example.com,elf2@example.com`,
// TODO: append video appointment link to description
`&details=${`${calendarEvent.description}\n` || ""}`,
`&location=${calendarEvent.address || ""}`,
"&sprop=&sprop=name:"
].join("")
);
With the above URL string, I can set the event title, event timing, and event location parameters except for the notification time. But now I want to update the notification time in the calendar event in the above link, Is that possible?