room resource type
Namespace: microsoft.graph
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. |
displayDeviceName | String | Specifies the name of the display device in the room. |
displayName | String | The name associated with 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. The beta version of this API has a new property added called placeId, which provides an immutable ID. |
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. |
tags | String collection | Specifies other features of the room, for example, details like the type of view or furniture type. |
videoDeviceName | String | Specifies the name of the video device in the room. |
bookingType values
Value | Description |
---|---|
reserved | The room is available only on a first-come, first-served basis. It can't be reserved. |
standard | The room is available and can be reserved. This value is the default. |
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"
}