Let's say I have an O365 account user@example.com
with a few shared mailboxes in it, e.g. shared1@example.com
, shared2@example.com
.
Is there any way to get a list of these two shared mailboxes without knowing their specific name?
ie. I'm looking for a function that works as such:
list = ews.GetListOfSharedMailboxes("user@example.com")
println(list) --> outputs Array("shared1@example.com", "shared2@example.com")
If not possible in EWS, is there any other API that supports this functionality?