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.
Namespace: microsoft.graph
Represents a group of room or workspace resources defined in the tenant. A roomList can contain a mix of room and workspace resources.
In Exchange Online, each roomList is associated with a mailbox.
Inherits 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 workspaces, all the room lists, the workspaces in a specific room list, 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 list. |
| Update place | The requested, derived type of place | Update the properties and relationships of a specified place object. |
For more supported methods, see place.
Properties
| Property | Type | Description |
|---|---|---|
| address | physicalAddress | The street address of the room list. |
| displayName | String | The name associated with the room list. |
| emailAddress | String | The email address of the room list. |
| geoCoordinates | outlookGeoCoordinates | Specifies the room list location in latitude, longitude, and (optionally) altitude coordinates. |
| id | String | Unique identifier for the room list. Read-only. This identifier isn't immutable and can change if there are changes to the mailbox or to the tenant configuration. |
| isWheelChairAccessible | Boolean | If the room allows wheelchairs. Inherited from place. |
| label | String | The label of the room list. Inherited from place. |
| phone | String | The phone number of the room list. |
| parentId | String | The place ID of the parent of the room list. Inherited from place. |
| tags | String collection | Custom tags that are associated with the room list categorization or filtering. Inherited from place. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| rooms | place collection | Read-only. Nullable. |
| workspaces | place collection | Read-only. Nullable. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.roomList",
"id": "String (identifier)",
"displayName": "String",
"geoCoordinates": {
"@odata.type": "microsoft.graph.outlookGeoCoordinates"
},
"phone": "String",
"address": {
"@odata.type": "microsoft.graph.physicalAddress"
},
"parentId": "String",
"tags": [
"String"
],
"isWheelChairAccessible": "Boolean",
"label": "String",
"emailAddress": "String"
}