I'm trying to create an Outlook Web Add-In that manages meeting rooms for it's users. The problem is getting and setting rooms in the Outlook Desktop Client.
When I try to get the item.RequiredAttendees
it gives me back the user's email eventhough the list is empty. Furthermore when I input a meeting room with an exchange address, I can't obtain the room through item.RequiredAttendees
.
I've tried numerous things, went through the whole office.js
API as far as I know.
To add to this, it all works fine when using OutlookWebApp
, it returns the email with recipientType
being External User
as upposed to user
. Adding only a location does not work as I need the exchange address to update the outlook calendar of that meeting room.
So, to summarize: I need a way to obtain the room email address from an outlook appointment in compose mode in the Outlook Desktop Client.
Thanks in advance.