Cameron Downer
Cameron Downer

Reputation: 2038

Microsoft Graph API Retrieving Resource Mailbox Attributes

I'm trying to fetch information about meeting rooms such as capacity and office.

I have the resource email address and MS ID.

I can view this information in Outlook but cannot when using the endpoint https://graph.microsoft.com/v1.0/users/{resource id}

Is this possible using the current API?

Any help appreciated.

Upvotes: 1

Views: 938

Answers (1)

Gopal Zadafiya
Gopal Zadafiya

Reputation: 291

You have to add one more attribute in graph endpoint to fetch room details as mentioned in the below example :

https://graph.microsoft.com/beta/users/{resource id}/findrooms

Reference : https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/user_findrooms

Upvotes: 1

Related Questions