Google Calendar create event URL
mouse 1937 · person cloud · link
Last update
2018-07-26
2018
07-26
« — »

Here is an example link:

1
2
3
4
5
6
7
http://www.google.com/calendar/event?
   action=TEMPLATE
  &src=japd5d7d7afkvcih60u1kl6ifo%40group.calendar.google.com
  &text=Dinner%20friends
  &dates=20090522T193000/20090524T003000
  &details=bring%20wine
  &location=GoodPlace,%201234%20Nice%20Road,%20NiceCity,%20XX%20YYYYY

Parameter details:

  • action (fixed value):
    action=TEMPLATE

  • src (select calendar):
    src=myemail%40gmail.com
    Find value via http://www.google.com/calendar/embedhelper

  • text (event title):
    text=Dinner%20friends

  • dates (range):
    dates=20090621T063000Z/20090621T080000Z
    (i.e. an event on 21 June 2009 from 7.30am to 9.0am British Summer Time (=GMT+1)).
    Format: dates=YYYYMMDDToHHMMSSZ/YYYYMMDDToHHMMSSZ
    This required parameter gives the start and end dates and times (in Greenwich Mean Time) for the event.
    JS code: (new Date()).toISOString().replace(/-|:|\.\d\d\d/g,"")

  • details (descrizione):
    detail=portare%20vino

  • location:
    location=GoodPlace,%201234%20Nice%20Road,%20NiceCity,%20XX%20YYYYY


Source: Google 1, 2, 3; StackOverflow 1, 2; Other 1