| title | Get place |
|---|---|
| description | Read the properties of a place object specified by its ID. |
| author | tiwarisakshi02 |
| ms.date | 11/11/2025 |
| ms.localizationpriority | medium |
| ms.subservice | outlook |
| doc_type | apiPageType |
Namespace: microsoft.graph
Read the properties of a place object specified by its ID.
The place object can be one of the following types:
- A building, which includes rich properties such as resource links and has a wireless network.
- A floor, which includes rich properties such as sort order.
- A section.
- A desk, which includes rich properties such as mailbox details and mode.
- A room, which includes rich properties such as an email address for the room, and accessibility, capacity, and device support.
- A workspace, which includes properties such as an email address for the workspace, and accessibility and capacity.
- A roomList, which includes an email address for the room list, and a navigation property to get the collection of room instances in that room list.
The listed resources are derived from the place object.
[!INCLUDE national-cloud-support]
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
[!INCLUDE permissions-table]
GET /places/{id}This method supports the $select query parameter to help get specific properties. For general information, see OData query parameters.
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a place object in the response body.
The following example shows a request to get a building.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/places/ca147fcf-ae27-43bb-9d91-f11e626e58bf[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.building",
"id": "ca147fcf-ae27-43bb-9d91-f11e626e58bf",
"placeId": "ca147fcf-ae27-43bb-9d91-f11e626e58bf",
"displayName": "B06",
"phone": "+1 (425) 615 8888 Ext 06",
"isWheelChairAccessible": true,
"label": "This is a building for demo",
"hasWiFi": true,
"geoCoordinates": {
"latitude": 47.644125,
"longitude": -122.122411,
"accuracy": null,
"altitude": null,
"altitudeAccuracy": null
},
"resourceLinks": [
{
"name": "Microsoft Web",
"linkType": "url",
"value": "www.microsoft.com"
}
]
}The following example shows a request to get a floor.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/places/49558ad4-6ede-46d7-8254-3ca9f90fc4e2[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.floor",
"id": "49558ad4-6ede-46d7-8254-3ca9f90fc4e2",
"placeId": "49558ad4-6ede-46d7-8254-3ca9f90fc4e2",
"displayName": "3",
"parentId": "ca147fcf-ae27-43bb-9d91-f11e626e58bf",
"sortOrder": 3
}The following example shows a request to get a section.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/places/ca163ae1-14a3-4e2a-8a97-5f82d672186f[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.section",
"id": "ca163ae1-14a3-4e2a-8a97-5f82d672186f",
"placeId": "ca163ae1-14a3-4e2a-8a97-5f82d672186f",
"displayName": "Mode Section 1",
"parentId": "49558ad4-6ede-46d7-8254-3ca9f90fc4e2"
}The following example shows a request to get a desk.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/places/df7dd4ef-04c4-41dd-816e-35475f4dd546[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.desk",
"id": "df7dd4ef-04c4-41dd-816e-35475f4dd546",
"placeId": "df7dd4ef-04c4-41dd-816e-35475f4dd546",
"displayName": "Desk6",
"parentId": "ca163ae1-14a3-4e2a-8a97-5f82d672186f",
"mode": { "@odata.type": "#microsoft.graph.dropInPlaceMode" }
}The following example shows a request to get a room.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/places/0be387a4-d53b-410f-9daf-f4fa07e5b05a[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.room",
"id": "0be387a4-d53b-410f-9daf-f4fa07e5b05a",
"placeId": "4923e5a8-453e-4edf-b272-9c33757d4fb3",
"displayName": "TestRoom-123",
"parentId": "88d25c73-e9c2-4284-86d7-2cf5685b67b9",
"isWheelChairAccessible": true,
"emailAddress": "TestRoom-123@contoso.com",
"nickname": "TestRoomZihan-123",
"bookingType": "standard",
"isTeamsEnabled": true
}The following example shows a request to get a workspace.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/places/ec10ce32-2065-40ba-aa2f-ecd5ea175420[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
[!INCLUDE snippet-not-available] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.workspace",
"id": "ec10ce32-2065-40ba-aa2f-ecd5ea175420",
"placeId": "8abb4849-b6a0-4c45-baab-92a6b63227a5",
"displayName": "deskpool 003",
"parentId": "46e0d2ec-d026-4e1d-861d-80ede4470f67",
"emailAddress": "deskpool0039052bd811752731134695@contoso.com",
"nickname": "deskpool 003",
"capacity": 10
}The following example shows a request to get a roomList.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/places/dc404124-302a-92aa-f98d-7b4deb0c1705/microsoft.graph.roomList[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": "dc404124-302a-92aa-f98d-7b4deb0c1705",
"displayName": "Building 1",
"address": {
"street": "4567 Main Street",
"city": "Buffalo",
"state": "NY",
"postalCode": "98052",
"countryOrRegion": "USA"
},
"emailAddress": "bldg1@contoso.com",
"placeId": "406bd1b2-237c-4710-bda2-8b7900d61b27"
}