GET http://www.google.com/calendar/feeds/example@google.com/private/full?fields=entry(title,gd:when)
<?xml version="1.0" encoding="UTF-8"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:gd="http://schemas.google.com/g/2005"> <entry> <title type="text">Example meeting</title> <gd:when endTime="2010-03-25T09:00:00.000-07:00" startTime="2010-03-25T08:00:00.000-07:00"> <gd:reminder method="alert" minutes="10"/> <gd:reminder method="sms" minutes="10"/> </gd:when> </entry> ... more entries ...</feed>
PATCH
gd:field
PATCH http://www.google.com/calendar/feeds/default/private/full/eventID HTTP/1.1Content-Type: application/xmlHost: www.google.comGData-Version: 2If-Match "FE8LQQJJeSp7IWA6WhVa"<?xml version="1.0" encoding="UTF-8"?><entry> <title type="text">Example meeting update</title> <gd:when endTime="2010-03-27T10:00:00.000-07:00" startTime="2010-03-27T09:00:00.000-07:00"> <gd:reminder method="alert" minutes="10"/> <gd:reminder method="sms" minutes="10"/> </gd:when></entry>