Ask Learn
Preview
Please sign in to use this experience.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this post we will see how to get the list of conference rooms or in other words, how to get all the meeting rooms in the user's tenant or in a specific room list programmatically. We can use Microsoft Graph API’s findRooms API call to do this.
Lets we play with a simple request to get all the rooms in the given user’s tenant,
Request
GET https://graph.microsoft.com/beta/me/findRooms
Response
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(microsoft.graph.emailAddress)",
"value": [
{
"name": "Conf Room Adams",
"address": "Adams@M365x214355.onmicrosoft.com"
},
{
"name": "Conf Room Baker",
"address": "Baker@M365x214355.onmicrosoft.com"
},
{
"name": "Conf Room Crystal",
"address": "Crystal@M365x214355.onmicrosoft.com"
},
{
"name": "Conf Room Hood",
"address": "Hood@M365x214355.onmicrosoft.com"
},
{
"name": "Conf Room Rainier",
"address": "Rainier@M365x214355.onmicrosoft.com"
},
{
"name": "Conf Room Stevens",
"address": "Stevens@M365x214355.onmicrosoft.com"
}
]
}
Please note,
/beta
version in Microsoft Graph are subject to change.Hope this helps.
Please sign in to use this experience.
Sign in