Notatka
Dostęp do tej strony wymaga autoryzacji. Może spróbować zalogować się lub zmienić katalogi.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
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 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. |
Properties
| Property | Type | Description |
|---|---|---|
| address | physicalAddress | The street address of the room list. |
| customProperties | stringDictionary | Custom properties for the room list. Each property has a string key and a string value. Inherited from place. Nullable. |
| displayName | String | The name associated with the room list. |
| emailAddress | String | The email address of the room list. |
| geoCoordinates | outlookGeoCoordinates | Specifies the roomlist 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. |
| lastUpdatedTime | DateTimeOffset | The date and time when the room list was last updated. The timestamp is in ISO 8601 format and is always in UTC. Inherited from place. Read-only. Nullable. |
| phone | String | The phone number of the room list. |
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)",
"customProperties": {"String": "String"},
"displayName": "String",
"geoCoordinates": {
"@odata.type": "microsoft.graph.outlookGeoCoordinates"
},
"phone": "String",
"address": {
"@odata.type": "microsoft.graph.physicalAddress"
},
"emailAddress": "String",
"lastUpdatedTime": "String (timestamp)"
}