room resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents a room in a tenant.
In Exchange Online, each room is associated with a room mailbox. Derived from place.
Methods
Method | Return Type | Description |
---|---|---|
List places | A collection of the requested, derived type of place | Get a collection of the specified type of place object defined in the tenant. For example, you can get all the rooms, all the room lists, or the rooms in a specific room list in the tenant. |
Get place | The requested, derived type of place | Get the properties and relationships of the specified place object, such as a room. |
Properties
Property | Type | Description |
---|---|---|
address | physicalAddress | The street address of the room. |
audioDeviceName | String | Specifies the name of the audio device in the room. |
bookingType | bookingType | Type of room. Possible values are standard , and reserved . |
building | String | Specifies the building name or building number that the room is in. |
capacity | Int32 | Specifies the capacity of the room. |
displayName | String | The name associated with the room. |
displayDeviceName | String | Specifies the name of the display device in the room. |
emailAddress | String | Email address of the room. |
floorLabel | String | Specifies a descriptive label for the floor, for example, P. |
floorNumber | Int32 | Specifies the floor number that the room is on. |
geoCoordinates | outlookGeoCoordinates | Specifies the room location in latitude, longitude, and optionally, altitude coordinates. |
id | String | Unique identifier for the room. Read-only. This identifier isn't immutable and can change if there are changes to the mailbox or the tenant configuration. |
isWheelChairAccessible | Boolean | Specifies whether the room is wheelchair accessible. |
label | String | Specifies a descriptive label for the room, for example, a number or name. |
nickname | String | Specifies a nickname for the room, for example, "conf room". |
phone | String | The phone number of the room. |
placeId | String | A unique identifier for the room. Read-only. This identifier isn't immutable and can change if there are changes to the mailbox or the tenant configuration. |
tags | String collection | Specifies other features of the room; for example, the type of view or furniture type. |
videoDeviceName | String | Specifies the name of the video device in the room. |
bookingType values
Value | Description |
---|---|
standard | The room can be reserved based on the other settings in this cmdlet. This value is the default. |
reserved | The room is available only on a first-come, first-served basis. It can't be reserved. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"address": {"@odata.type": "microsoft.graph.physicalAddress"},
"audioDeviceName": "String",
"bookingType": "String",
"building": "String",
"capacity": 1024,
"displayName": "String",
"displayDeviceName": "String",
"emailAddress": "String",
"floorLabel": "String",
"floorNumber": 1024,
"geoCoordinates": {"@odata.type": "microsoft.graph.outlookGeoCoordinates"},
"id": "String (identifier)",
"isWheelChairAccessible": true,
"label": "String",
"nickname": "String",
"phone": "String",
"tags": ["String"],
"videoDeviceName": "String",
"placeId": "String (alternate identifier)"
}