Hi,

To create an recurrence exception essentially is a specialized case of
updating a calendar event entry, which entails the same update mechanism
using the PUT request against the edit URL.  The key is to find the edit URL
that represents that particular recurring instance.

First you need to pull the feed for your calendar using the
singleevents=true parameter,

http://www.google.com/calendar/feeds/default/private/full?singleevents=true

This feed will flatten your recurrence into individual event entries.  Now
you can iterate through each recurring instance entry and each one should
have its own edit URL.  So the idea is that you need to locate the edit URL
of the one instance that you want to change.  Once you get a hold of that
edit URL you can edit that entry (modify its <when> element to create an
recurrence exception) and submit this edited entry with PUT request against
the edit URL.

Hope that helps,
Austin

On Tue, Aug 26, 2008 at 5:35 AM, Bandwidth <[EMAIL PROTECTED]>wrote:

>
> Hello
>
> I created daily reccurrence appointments from 25.8.2008 to 30.8.2008
> at 08 AM ( startTime ).
> And now.. i want to create ( update one of occurrence ) exception on
> 27.8.  I want change location and start time.
>
> How can i do that? I was reading doc's and searching examples but not
> success.
> Can i recieve occurrence ids and update it ??
>
> Thanx!
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Calendar Data API" group.
To post to this group, send email to 
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to