Skip to content

Latest commit

 

History

History
146 lines (109 loc) · 4.75 KB

File metadata and controls

146 lines (109 loc) · 4.75 KB
title user: findRoomLists
description Get the room lists defined in a tenant.
author vrod9429
ms.localizationpriority high
ms.subservice outlook
doc_type apiPageType
ms.date 06/21/2024

user: findRoomLists

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Get the room lists defined in a tenant, as represented by their emailAddress objects.

Tenants can organize meeting rooms into room lists. In this API, each meeting room and room list is represented by an emailAddress instance. You can get all the room lists in the tenant, get all the rooms in the tenant, or get all the rooms in a specific room list.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

HTTP request

GET /me/findRoomLists
GET /users/{id}/findRoomLists

Request headers

Name Type Description
Authorization string Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type string application/json. Required.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a collection of emailAddress objects in the response body.

If no lists are defined in the tenant, then an empty array is returned.

Example

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/me/findRoomLists

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-type: application/json

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(microsoft.graph.emailAddress)",
    "value": [
        {
            "name": "Building 1 Rooms",
            "address": "Building1Rooms@contoso.com"
        },
        {
            "name": "Building 2 Rooms",
            "address": "Building2Rooms@contoso.com"
        }
    ]
}