Hello Russell, Adding a new calendar resource needs to be done using another API: http://code.google.com/googleapps/domain/calendar_resource/docs/1.0/calendar_resource_developers_guide_protocol.html
Once a calendar resource has been created, you can use regular Calendar API methods to retrieve, insert, edit and delete events on this calendar: http://code.google.com/apis/calendar/data/2.0/developers_guide_dotnet.html Use the calendar resource "resourceEmail<http://code.google.com/googleapps/domain/calendar_resource/docs/1.0/calendar_resource_developers_guide_protocol.html#retrieving_single_calendar>" attribute as the ID to use when sending requests to Calendar API. Example: // Create the query object: EventQuery query = new EventQuery(); query.Uri = new Uri("https://www.google.com/calendar/feeds/<CALENDAR_RESOURCE_EMAIL>/private/full"); // Tell the service to query: EventFeed calFeed = service.Query(query); Please note that you need to be a domain administrator in order to add events to this calendar. Best, Alain On Wed, Oct 19, 2011 at 1:50 PM, Russell Reid <[email protected]> wrote: > We are moving to google apps and trying to replace functionality that we > used in Exchange. We have an app that publishes events to an exchange > public folder calendar from an access database. I would like to change the > publishing to a google apps resource calendar instead. I can make the > connection to the resource calendar programatically (using .net api) but am > having a hard time finding the method to insert an event entry. Do resource > calendars use the same method as a personal calendar? Is there any > documentation on editing, inserting, deleting events on resource calendars > programmatically? > > -- > 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 | Developer Programs Engineer -- 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
