Forum Discussion
EdwardHefter
4 years agoQrew Cadet
I don't know about adding attendees, but here is a way to generate the event (times are in GMT):
http://www.google.com/calendar/event?action=TEMPLATE&dates=20220301T010000Z%2F20220316T180000Z&text=Event%20Title&location=Location&details=Description
In a URL you generate, it would look like:
URLEncode("http://www.google.com/calendar/event?action=TEMPLATE&dates="&[from date]&"T"&[From Time in GMT]&"Z%2F"&[To Date]&"T"&[To Time in GMT]&"Z&text="&[Event Name]&"&location="&[Event Location]&"&details="&[Event details])
------------------------------
Edward Hefter
www.Sutubra.com
------------------------------
http://www.google.com/calendar/event?action=TEMPLATE&dates=20220301T010000Z%2F20220316T180000Z&text=Event%20Title&location=Location&details=Description
In a URL you generate, it would look like:
URLEncode("http://www.google.com/calendar/event?action=TEMPLATE&dates="&[from date]&"T"&[From Time in GMT]&"Z%2F"&[To Date]&"T"&[To Time in GMT]&"Z&text="&[Event Name]&"&location="&[Event Location]&"&details="&[Event details])
------------------------------
Edward Hefter
www.Sutubra.com
------------------------------
- ProcessQ4 years agoQrew MemberThanks for this Edward but the attendees really is the most important bit, otherwise it will be easier to give the users a "copy to clipboard" button for the emails and have them manually create the calendar event
------------------------------
Process Q
------------------------------- EdwardHefter4 years agoQrew CadetFound it - use the &Add=
URLEncode("http://www.google.com/calendar/event?action=TEMPLATE&dates="&[from date]&"T"&[From Time in GMT]&"Z%2F"&[To Date]&"T"&[To Time in GMT]&"Z&text="&[Event Name]&"&location="&[Event Location]&"&details="&[Event details]&"&Add="[E-Mail Addresses])
More details on the URL can be found here - https://github.com/InteractionDesignFoundation/add-event-to-calendar-docs/blob/main/services/google.md
------------------------------
Edward Hefter
www.Sutubra.com
------------------------------