roomList resource type
Namespace: microsoft.graph
Represents a group of room objects defined in the tenant.
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 list. |
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 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 the tenant configuration. The beta version of this API has a new property added called placeId, which provides an immutable ID |
phone | String | The phone number of the room list. |
Relationships
Relationship | Type | Description |
---|---|---|
rooms | place collection | Read-only. Nullable. |
JSON representation
The following JSON representation shows the resource type.
{
"address": {"@odata.type": "microsoft.graph.physicalAddress"},
"displayName": "String",
"emailAddress": "String",
"geoCoordinates": {"@odata.type": "microsoft.graph.outlookGeoCoordinates"},
"id": "String (identifier)",
"phone": "String"
}