| title | place: descendants |
|---|---|
| description | Get all the descendants of a specific type under a place. |
| author | tiwarisakshi02 |
| ms.date | 11/11/2025 |
| ms.localizationpriority | medium |
| ms.subservice | outlook |
| doc_type | apiPageType |
Namespace: microsoft.graph
Get all the descendants of a specific type under a place.
Note
- Before you can use this API, ensure that the Places settings are properly configured. For more information, see Prerequisites for Places list and descendant APIs.
- This method can't return more than 2,500 places.
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}/descendants/{placeType}Note:
{placeType}can be any supported place type such asmicrosoft.graph.building,microsoft.graph.floor,microsoft.graph.section,microsoft.graph.room,microsoft.graph.workspace, andmicrosoft.graph.desk.
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this function returns a 200 OK response code and a place collection in the response body.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/places/ca163ae1-14a3-4e2a-8a97-5f82d672186f/descendants/microsoft.graph.desk[!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
{
"value": [
{
"id": "530f7900-8063-4daf-9cc1-168cb3ac26e9",
"placeId": "530f7900-8063-4daf-9cc1-168cb3ac26e9",
"displayName": "desk 5",
"parentId": "ca163ae1-14a3-4e2a-8a97-5f82d672186f",
"isWheelChairAccessible": false,
"mode": { "@odata.type": "#microsoft.graph.dropInPlaceMode" }
},
{
"id": "57289959-4add-4270-872b-cc93ca099ce5",
"placeId": "57289959-4add-4270-872b-cc93ca099ce5",
"displayName": "desk 6",
"parentId": "ca163ae1-14a3-4e2a-8a97-5f82d672186f",
"isWheelChairAccessible": true,
"mailboxDetails": {
"externalDirectoryObjectId": "6abaaee5-b796-48d0-be3d-0aa980258321",
"emailAddress": "desk54a4fce541749088182888@contoso.com"
},
"mode": {
"@odata.type": "#microsoft.graph.reservablePlaceMode"
}
}
]
}