Search code examples
c#microsoft-graph-apiexchange-servermicrosoft-graph-sdks

Exchange Room mailbox location details using GraphClient


I'm trying to fetch room mailbox details from exchange using GraphClient. And I'm getting successful response from the following API

 var place = await graphClient.Places["roomaddress@microsoft.com"]
.Request()
.GetAsync();

But the below address details always shown as null in this response. What's the issue might be? enter image description here

Any help is appreciated.


Solution

    • You can use the set-place Exchange PowerShell cmdlet to set the values for your exchange online mailbox and update its metadata info. Here is the related documentation link

    • Then, use Graph API SDK or MS Graph Explorer and make the API call, it returns the values.