Let's say I have an O365 account [email protected]
with a few shared mailboxes in it, e.g. [email protected]
, [email protected]
.
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("[email protected]")
println(list) --> outputs Array("[email protected]", "[email protected]")
If not possible in EWS, is there any other API that supports this functionality?