I'm trying to get the Out of Office settings for a given mailbox by using EWS/EWS Managed API 2.0.
The setup is the following; a single "service account/mailbox" reads other mailbox calendars and Out of Office settings. The calendar part is easy using the EWS Managed API, but I can't seem to figure out how to get the Out of Office settings by using the API. The API has a method called GetUserOofSettings(string smtpAddress) but this returns access denied if the caller the given smtpAddress do not belong to the mailbox making the request.
Because of this I have tried to get the Out of Office settings by using the WSDL/service published by Exchange directly. By doing so, I'm able to get the Out of Office message for other mailboxes using the operation GetMailTips, but this takes me only half the way because I'm not able to get the duration.
My question(s) are: Is it possible to get other mailboxes Out of Office settings using the EWS Managed API if not is it possible to get the Out of Office duration by calling the EWS service directly?