Hello, You won't be able to send event notifications when using the DELETE method as it doesn't require any body in the request. You can however update the event's status element to "canceled" and set its sendEventNotifications to true and use the update (PUT) method:
event.event_status = gdata.data.EventStatus(value=gdata.data.CANCELED_EVENT) event.event_status = gdata.calendar.data.SendEventNotificationsProperty(value='true') client.Update(event) I hope this helps! Best, Alain On Wed, Aug 31, 2011 at 5:11 PM, Tasmania <[email protected]> wrote: > hi there, > > I am canceling an event using the Delete method: > > client.Delete(event) > > I want to notify guests that it was canceled, is it possible for the > API to do that for me the same way it sends invites when creating an > event? > I tried with: > > event.send_event_notifications = > gdata.calendar.data.SendEventNotificationsProperty(value='true') > client.Delete(event) > > But it didn't work... > > Thanks!! > > M > > -- > 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://code.google.com/apis/calendar/community/forum.html > -- Alain Vongsouvanh -- 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://code.google.com/apis/calendar/community/forum.html
