Good day,

I am writing an in-house user management application.

I am able to connect to the AppsService and get a complete list of users.

                appservice = new AppsService(aDomain, aDomainUserName, 
Decode(aDomainUserPwd));
                UserFeed uf = appservice.RetrieveAllUsers();
                ...

I am also able connect to the CalendarResourceService and get a list of 
calendar resources.

                resourceservice = new CalendarResourceService(aDomain, 
"google_control_demo");
                
resourceservice.setUserCredentialsaDomainUserName,Decode(aDomainUserPwd));
                var rf = resourceservice.RetrieveAllCalendarResources();
                ...

I am also able to create a new user.

                var user = appservice.CreateUser(aUserName, aUserFirstName, 
aUserLastName, GenerateStrongPwd());

How do I subscribe the new user to a Calendar Resource (I have the calendar 
resourceEmail)?

(Am I doing everything in the preferred manner as well?)

-Markus

-- 
You received this message because you are subscribed to the Google Groups 
"Google Apps Domain Information and Management APIs" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-apps-mgmt-apis/-/tKTKvHRjexsJ.
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-apps-mgmt-apis?hl=en.

Reply via email to