Forum Discussion
Patrick Rote
Oct 25, 2017Iron Contributor
List users who have currently setup out of office including start date and end date
Hi All, Just wondering if it's possible to list users who have setup out of office . Is the any API I can use? e.g microsof Graph API or does exchange online have an API? Looked at ms graph didn't...
Oct 25, 2017
You could run a powershell that runs the following:
Get-Mailbox | Get-MailboxAutoReplyConfiguration
And then use PnP PowerShell to create a list item in SharePoint.
https://msdn.microsoft.com/en-us/pnp_powershell/pnp-powershell-overview
Or if you want an API:
https://msdn.microsoft.com/en-us/library/office/hh532559(v=exchg.80).aspx
- Patrick RoteOct 25, 2017Iron ContributorThanks so much for the reply.
With API option will i be able to use EWS with Exchange online?